結果

問題 No.432 占い(Easy)
ユーザー ABKZABKZ
提出日時 2023-07-23 21:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 81,760 KB
実行使用メモリ 75,952 KB
最終ジャッジ日時 2024-09-25 01:01:20
合計ジャッジ時間 3,124 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,544 KB
testcase_01 AC 37 ms
52,492 KB
testcase_02 AC 38 ms
52,940 KB
testcase_03 AC 38 ms
53,440 KB
testcase_04 AC 50 ms
63,996 KB
testcase_05 AC 38 ms
52,816 KB
testcase_06 AC 40 ms
53,248 KB
testcase_07 AC 48 ms
63,468 KB
testcase_08 AC 38 ms
52,712 KB
testcase_09 AC 62 ms
66,556 KB
testcase_10 AC 58 ms
68,796 KB
testcase_11 AC 62 ms
75,240 KB
testcase_12 AC 98 ms
75,452 KB
testcase_13 AC 93 ms
75,952 KB
testcase_14 AC 63 ms
75,344 KB
testcase_15 AC 38 ms
52,708 KB
testcase_16 AC 38 ms
53,168 KB
testcase_17 AC 59 ms
74,936 KB
testcase_18 AC 77 ms
75,400 KB
testcase_19 AC 72 ms
75,876 KB
testcase_20 AC 64 ms
75,540 KB
testcase_21 AC 65 ms
75,348 KB
testcase_22 AC 58 ms
67,776 KB
testcase_23 AC 56 ms
64,544 KB
testcase_24 AC 61 ms
67,160 KB
testcase_25 AC 61 ms
65,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    *S, = map(int, input())
    for _ in range(len(S)-1):
        a = [x1 + x2 for x1, x2 in zip(S,S[1:])]
        S = [x if x < 10 else sum(divmod(x,10)) for x in a]
    print(S[0])
0