結果

問題 No.432 占い(Easy)
ユーザー convexineqconvexineq
提出日時 2021-04-04 10:09:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 75,132 KB
最終ジャッジ日時 2024-06-08 01:40:39
合計ジャッジ時間 2,434 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 40 ms
53,076 KB
testcase_04 AC 44 ms
59,796 KB
testcase_05 AC 39 ms
52,820 KB
testcase_06 AC 41 ms
53,280 KB
testcase_07 AC 43 ms
58,964 KB
testcase_08 AC 41 ms
52,244 KB
testcase_09 AC 68 ms
67,080 KB
testcase_10 AC 49 ms
61,056 KB
testcase_11 AC 49 ms
61,952 KB
testcase_12 AC 59 ms
74,720 KB
testcase_13 AC 58 ms
75,044 KB
testcase_14 AC 45 ms
62,080 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 54 ms
75,132 KB
testcase_19 AC 49 ms
68,992 KB
testcase_20 AC 47 ms
62,592 KB
testcase_21 AC 47 ms
64,000 KB
testcase_22 AC 51 ms
61,184 KB
testcase_23 AC 57 ms
62,848 KB
testcase_24 AC 67 ms
66,688 KB
testcase_25 AC 64 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    *s, = map(int,input())
    if all(si==0 for si in s):
        print(0)
        continue
    for _ in range(len(s)-1):
        s = [(i+j)%9 for i,j in zip(s,s[1:])]
    v = s[0]%9
    print(v if v else 9)
0