結果

問題 No.432 占い(Easy)
ユーザー YCescaYCesca
提出日時 2016-10-14 23:23:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-11-22 10:30:18
合計ジャッジ時間 3,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 43 ms
52,864 KB
testcase_04 AC 58 ms
65,792 KB
testcase_05 AC 43 ms
52,736 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 AC 57 ms
65,408 KB
testcase_08 AC 43 ms
52,736 KB
testcase_09 AC 72 ms
65,792 KB
testcase_10 AC 70 ms
68,864 KB
testcase_11 AC 89 ms
75,776 KB
testcase_12 AC 171 ms
80,256 KB
testcase_13 AC 170 ms
80,128 KB
testcase_14 AC 90 ms
75,904 KB
testcase_15 AC 43 ms
52,992 KB
testcase_16 AC 43 ms
52,864 KB
testcase_17 AC 147 ms
80,128 KB
testcase_18 AC 122 ms
77,696 KB
testcase_19 AC 110 ms
76,928 KB
testcase_20 AC 92 ms
76,288 KB
testcase_21 AC 94 ms
76,544 KB
testcase_22 AC 70 ms
68,224 KB
testcase_23 AC 71 ms
65,920 KB
testcase_24 AC 71 ms
65,536 KB
testcase_25 AC 71 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
def tasu(x):
    if len(x) == 1: return x[0]
    else:    
        x1 = [sum(map(int,list(str(x[i2] + x[i2+1])))) for i2 in range(len(x)-1)]
    return tasu(x1)
for i in range(t):
    print(tasu(list(map(int,input()))))

0