結果

問題 No.434 占い
ユーザー ichibanshiboriichibanshibori
提出日時 2016-10-15 00:06:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 417 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,096 KB
最終ジャッジ日時 2024-11-22 08:20:24
合計ジャッジ時間 43,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
21,504 KB
testcase_01 AC 31 ms
17,444 KB
testcase_02 AC 30 ms
17,568 KB
testcase_03 AC 30 ms
21,376 KB
testcase_04 AC 32 ms
17,568 KB
testcase_05 AC 30 ms
23,096 KB
testcase_06 AC 35 ms
17,440 KB
testcase_07 AC 32 ms
21,376 KB
testcase_08 TLE -
testcase_09 AC 1,276 ms
21,248 KB
testcase_10 AC 147 ms
17,448 KB
testcase_11 AC 50 ms
22,836 KB
testcase_12 AC 83 ms
17,572 KB
testcase_13 TLE -
testcase_14 AC 1,272 ms
17,440 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,186 ms
17,444 KB
testcase_19 AC 221 ms
22,144 KB
testcase_20 AC 560 ms
17,316 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 31 ms
10,624 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 406 ms
10,624 KB
testcase_30 AC 479 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(S):
    slst = [ord(c) - ord('0') for c in S]

    while len(slst) > 1:
        nextlst = []
        for i in range(len(slst) - 1):
            sn = slst[i] + slst[i + 1]
            if (sn >= 10):
                sn = sn % 10 + (sn // 10) % 10
            nextlst += [sn]
        #print(nextlst)
        slst = nextlst

    print(slst[0])



T = int(input())
for i in range(T):
    S = input()
    solve(S)
0