結果

問題 No.432 占い(Easy)
ユーザー pypypymipypypymi
提出日時 2022-02-17 15:04:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 76,088 KB
最終ジャッジ日時 2024-06-29 07:41:28
合計ジャッジ時間 2,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,852 KB
testcase_01 AC 38 ms
52,148 KB
testcase_02 AC 34 ms
52,456 KB
testcase_03 AC 33 ms
53,276 KB
testcase_04 AC 44 ms
67,484 KB
testcase_05 AC 33 ms
53,740 KB
testcase_06 AC 33 ms
53,612 KB
testcase_07 AC 44 ms
66,096 KB
testcase_08 AC 34 ms
54,108 KB
testcase_09 AC 52 ms
66,416 KB
testcase_10 AC 49 ms
69,544 KB
testcase_11 AC 57 ms
75,552 KB
testcase_12 AC 113 ms
75,928 KB
testcase_13 AC 116 ms
76,080 KB
testcase_14 AC 58 ms
75,880 KB
testcase_15 AC 35 ms
53,992 KB
testcase_16 AC 33 ms
53,612 KB
testcase_17 AC 99 ms
75,904 KB
testcase_18 AC 81 ms
75,292 KB
testcase_19 AC 72 ms
75,540 KB
testcase_20 AC 61 ms
76,088 KB
testcase_21 AC 61 ms
75,856 KB
testcase_22 AC 52 ms
69,644 KB
testcase_23 AC 54 ms
66,356 KB
testcase_24 AC 54 ms
65,996 KB
testcase_25 AC 55 ms
67,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
for i in range(n):
    s = list(map(int,list(input())))
    while len(s)>1:
        s_c = s.copy()
        for i in range(0,len(s)-1):
            s[i] = sum(map(int,list(str(s_c[i]+s_c[i+1]))))
        s = s[:len(s)-1]
    print(s[0])
            
0