結果

問題 No.432 占い(Easy)
ユーザー ああいいああいい
提出日時 2022-05-17 11:54:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 266 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-09-15 06:05:09
合計ジャッジ時間 2,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 45 ms
57,344 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 45 ms
57,472 KB
testcase_08 WA -
testcase_09 AC 69 ms
65,408 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 51 ms
62,848 KB
testcase_13 AC 51 ms
62,976 KB
testcase_14 WA -
testcase_15 AC 41 ms
51,712 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 51 ms
62,976 KB
testcase_18 AC 51 ms
61,952 KB
testcase_19 WA -
testcase_20 AC 47 ms
59,520 KB
testcase_21 AC 47 ms
59,648 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 70 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

def calc(S):
    l = list(map(int,list(S)))
    while len(l) > 1:
        nx = [0] * (len(l) - 1)
        for i in range(len(l) - 1):
            nx[i] = (l[i] + l[i+1]) % 9
        l = nx
    return l[0]
for _ in range(T):
    print(calc(input()))
0