結果

問題 No.432 占い(Easy)
ユーザー syunsukesyunsuke
提出日時 2020-11-08 10:07:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 75,816 KB
最終ジャッジ日時 2024-07-22 15:01:26
合計ジャッジ時間 2,362 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,248 KB
testcase_01 AC 33 ms
52,216 KB
testcase_02 AC 32 ms
52,316 KB
testcase_03 AC 33 ms
53,136 KB
testcase_04 AC 37 ms
59,688 KB
testcase_05 AC 34 ms
52,392 KB
testcase_06 AC 34 ms
52,956 KB
testcase_07 AC 37 ms
59,100 KB
testcase_08 AC 33 ms
52,148 KB
testcase_09 AC 55 ms
66,256 KB
testcase_10 AC 53 ms
68,628 KB
testcase_11 AC 44 ms
64,880 KB
testcase_12 AC 53 ms
75,500 KB
testcase_13 AC 53 ms
75,816 KB
testcase_14 AC 46 ms
64,292 KB
testcase_15 AC 34 ms
53,072 KB
testcase_16 AC 33 ms
52,276 KB
testcase_17 AC 51 ms
75,752 KB
testcase_18 AC 54 ms
75,692 KB
testcase_19 AC 49 ms
71,052 KB
testcase_20 AC 47 ms
65,688 KB
testcase_21 AC 43 ms
66,032 KB
testcase_22 AC 45 ms
63,184 KB
testcase_23 AC 47 ms
61,840 KB
testcase_24 AC 55 ms
66,108 KB
testcase_25 AC 54 ms
67,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Q = int(input())
for q in range(Q):
    L=list(input())
    for i in range(len(L)):
        L[i]=int(L[i])
    for i in range(len(L)-1):
        l=[]
        for j in range(1,len(L)):
            l.append((L[j]+L[j-1])%10+(L[j]+L[j-1])//10)
        L=l
    print(L[0])
0