結果

問題 No.432 占い(Easy)
ユーザー ABKZABKZ
提出日時 2023-07-15 16:27:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 353 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,832 KB
最終ジャッジ日時 2024-09-17 01:25:19
合計ジャッジ時間 3,492 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,964 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 45 ms
52,608 KB
testcase_04 AC 64 ms
65,536 KB
testcase_05 AC 46 ms
52,480 KB
testcase_06 AC 45 ms
52,096 KB
testcase_07 AC 67 ms
66,048 KB
testcase_08 AC 45 ms
52,864 KB
testcase_09 AC 75 ms
65,152 KB
testcase_10 AC 91 ms
74,400 KB
testcase_11 AC 102 ms
76,064 KB
testcase_12 AC 161 ms
76,672 KB
testcase_13 AC 149 ms
76,832 KB
testcase_14 AC 84 ms
75,904 KB
testcase_15 AC 43 ms
52,864 KB
testcase_16 AC 43 ms
53,120 KB
testcase_17 AC 94 ms
76,072 KB
testcase_18 AC 111 ms
75,960 KB
testcase_19 AC 97 ms
76,252 KB
testcase_20 AC 94 ms
75,900 KB
testcase_21 AC 98 ms
76,288 KB
testcase_22 AC 73 ms
70,784 KB
testcase_23 AC 99 ms
76,504 KB
testcase_24 AC 64 ms
64,768 KB
testcase_25 AC 65 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

for _ in range(T):
    S = [int(x) for x in input()]
    lp_num = len(S) - 1
    for _ in range(lp_num):
        a = [0] * (len(S) -1)
        b = sum([[x,x] for x in S], [])[1:-1]
        for i, num in enumerate(b):
            a[i//2] += b[i]
            
        S = [x if x < 10 else sum(divmod(x, 10)) for x in a]
    print(S[0])
0