結果

問題 No.432 占い(Easy)
ユーザー kohei2019kohei2019
提出日時 2022-01-24 23:58:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-05-08 20:43:38
合計ジャッジ時間 3,896 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 47 ms
53,504 KB
testcase_04 AC 66 ms
70,272 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 40 ms
52,864 KB
testcase_07 AC 64 ms
71,168 KB
testcase_08 AC 41 ms
52,992 KB
testcase_09 AC 67 ms
66,432 KB
testcase_10 AC 69 ms
71,936 KB
testcase_11 AC 95 ms
76,416 KB
testcase_12 AC 202 ms
76,544 KB
testcase_13 AC 206 ms
76,416 KB
testcase_14 AC 91 ms
76,288 KB
testcase_15 AC 42 ms
53,248 KB
testcase_16 AC 43 ms
53,632 KB
testcase_17 AC 184 ms
76,288 KB
testcase_18 AC 154 ms
76,416 KB
testcase_19 AC 120 ms
76,416 KB
testcase_20 AC 102 ms
76,288 KB
testcase_21 AC 106 ms
76,160 KB
testcase_22 AC 71 ms
71,296 KB
testcase_23 AC 71 ms
68,736 KB
testcase_24 AC 64 ms
66,176 KB
testcase_25 AC 63 ms
66,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
def ff(i):
    i = sum(list(map(int,list(str(i)))))
    while len(str(i)) > 1:
        i = sum(list(map(int,list(str(i)))))
    return i
def func(num):
    ll = list(map(int,list(str(num))))
    N = len(ll)
    for i in range(N-1):
        ll1 = []
        for j in range(N-i-1):
            ll1.append(ff(ll[j]+ll[j+1]))
        ll = ll1
    return ll[0]
lsS = [input() for i in range(T)]
for s in lsS:
    print(func(s))
0