結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 WA -
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 45 ms
57,344 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 WA -
testcase_07 AC 45 ms
57,088 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 WA -
testcase_10 AC 51 ms
59,776 KB
testcase_11 AC 48 ms
59,264 KB
testcase_12 AC 52 ms
62,720 KB
testcase_13 AC 53 ms
62,720 KB
testcase_14 AC 48 ms
59,264 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 52 ms
61,952 KB
testcase_19 AC 52 ms
61,568 KB
testcase_20 AC 48 ms
59,392 KB
testcase_21 AC 48 ms
59,904 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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
    if l[0] == 0:
        l[0] = 9
    return l[0]
for _ in range(T):
    print(calc(input()))
0