結果

問題 No.432 占い(Easy)
ユーザー kohei2019kohei2019
提出日時 2022-01-24 23:58:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 76,620 KB
最終ジャッジ日時 2024-12-15 04:04:53
合計ジャッジ時間 3,505 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,852 KB
testcase_01 AC 37 ms
53,060 KB
testcase_02 AC 38 ms
52,072 KB
testcase_03 AC 41 ms
53,960 KB
testcase_04 AC 55 ms
70,572 KB
testcase_05 AC 41 ms
53,612 KB
testcase_06 AC 39 ms
53,756 KB
testcase_07 AC 56 ms
72,380 KB
testcase_08 AC 40 ms
53,952 KB
testcase_09 AC 58 ms
67,104 KB
testcase_10 AC 61 ms
72,904 KB
testcase_11 AC 87 ms
76,420 KB
testcase_12 AC 220 ms
76,620 KB
testcase_13 AC 220 ms
76,520 KB
testcase_14 AC 85 ms
76,208 KB
testcase_15 AC 41 ms
55,132 KB
testcase_16 AC 39 ms
54,820 KB
testcase_17 AC 203 ms
76,372 KB
testcase_18 AC 153 ms
76,256 KB
testcase_19 AC 124 ms
76,568 KB
testcase_20 AC 92 ms
76,360 KB
testcase_21 AC 97 ms
76,060 KB
testcase_22 AC 61 ms
71,804 KB
testcase_23 AC 63 ms
69,144 KB
testcase_24 AC 59 ms
66,884 KB
testcase_25 AC 59 ms
67,164 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