結果

問題 No.432 占い(Easy)
ユーザー nanaenanae
提出日時 2017-02-17 17:11:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 639 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-12-30 23:00:56
合計ジャッジ時間 2,725 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 36 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 37 ms
10,752 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 39 ms
10,752 KB
testcase_15 AC 33 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 RE -
testcase_18 AC 67 ms
11,904 KB
testcase_19 AC 53 ms
11,136 KB
testcase_20 AC 42 ms
10,752 KB
testcase_21 AC 43 ms
11,008 KB
testcase_22 AC 34 ms
10,752 KB
testcase_23 AC 35 ms
10,752 KB
testcase_24 AC 37 ms
10,752 KB
testcase_25 AC 38 ms
10,624 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