結果

問題 No.432 占い(Easy)
ユーザー nanaenanae
提出日時 2017-02-17 17:11:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 639 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-06-09 20:51:00
合計ジャッジ時間 2,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 40 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 37 ms
10,880 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 38 ms
10,752 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 RE -
testcase_18 AC 66 ms
12,032 KB
testcase_19 AC 52 ms
11,264 KB
testcase_20 AC 41 ms
10,880 KB
testcase_21 AC 41 ms
11,136 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 AC 35 ms
10,880 KB
testcase_24 AC 36 ms
10,752 KB
testcase_25 AC 36 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def debug(x, table):
    for name, val in table.items():
        if x is val:
            print('DEBUG:{} -> {}'.format(name, val), file=sys.stderr)
            return None

def solve():
    T = int(input())
    for test in range(T):
        S = [int(i) for i in input()]
        # debug(S, locals())
        ans = uranai(S)
        print(ans)

def uranai(S):
    if len(S) == 1:
        return S[0]
    else:
        S = [S[i] + S[i + 1] for i in range(len(S) - 1)]
        for i in range(len(S)):
            if S[i] >= 10:
                S[i] = 1 + S[i] % 10
        return uranai(S)

if __name__ == '__main__':
    solve()
0