乙級(Basic Level) 1021 查驗身份證
阿新 • • 發佈:2018-08-25
分配 for level tro style put 個數 pri all
題目描述
一個合法的身份證號碼由17位地區、日期編號和順序編號加1位校驗碼組成。校驗碼的計算規則如下:
首先對前17位數字加權求和,權重分配為:{7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2};然後將計算的和對11取模得
到值Z;最後按照以下關系對應Z值與校驗碼M的值:
Z:0 1 2 3 4 5 6 7 8 9 10
M:1 0 X 9 8 7 6 5 4 3 2
現在給定一些身份證號碼,請你驗證校驗碼的有效性,並輸出有問題的號碼。
輸入描述:
輸入第一行給出正整數N(<= 100)是輸入的身份證號碼的個數。隨後N行,每行給出1個18位身份證號碼。
輸出描述:
按照輸入的順序每行輸出1個有問題的身份證號碼。這裏並不檢驗前17位是否合理,只檢查前17位是否全為數字且最後1位校驗碼計算準確。如果所有號碼都正常,
則輸出“All passed”。
輸入例子:
4
320124198808240056
12010X198901011234
110108196711301866
37070419881216001X
輸出例子:
12010X198901011234
110108196711301866
37070419881216001X
Python: n = int(input()) q = [7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2] M = [‘1‘,‘0‘,‘X‘,‘9‘,‘8‘,‘7‘,‘6‘,‘5‘,‘4‘,‘3‘,‘2‘] wrong = 0 for i in range(n): b = input() num = 0 quit= False for j in range(17): if b[j]>=‘0‘ and b[j]<=‘9‘: num += int(b[j])*q[j] else: quit = True break if M[num%11] != b[17] or quit: print(b) wrong += 1 if wrong == 0: print("All passed")
C: #include <stdio.h> intmain() { int i, j, num, n, q[17] = { 7, 9, 10, 5, 8, 4, 2, 1, 6, 3, 7, 9, 10, 5, 8, 4, 2 }; char b[18], M[11] = { ‘1‘, ‘0‘, ‘X‘, ‘9‘, ‘8‘, ‘7‘, ‘6‘, ‘5‘, ‘4‘, ‘3‘, ‘2‘ }; bool quit,wrong=false; scanf("%d", &n); for (i = 0; i < n; i++) { scanf("%s", &b); num = 0; quit = false; for (j = 0; j < 17; j++) { if (b[j] >= ‘0‘ && b[‘j‘] <= ‘9‘) num += (b[j] - ‘0‘)*q[j]; else { quit = true; break; } } if ((M[num % 11] != b[17]) || quit) { printf("%s\n", b); wrong = true; } } if (!wrong) printf("All passed"); return 0; }
乙級(Basic Level) 1021 查驗身份證