結果

問題 No.434 占い
ユーザー matsu7874matsu7874
提出日時 2016-10-14 23:26:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 375 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-11-22 06:07:29
合計ジャッジ時間 41,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
15,872 KB
testcase_01 AC 28 ms
21,504 KB
testcase_02 AC 29 ms
15,872 KB
testcase_03 AC 31 ms
21,376 KB
testcase_04 AC 29 ms
16,000 KB
testcase_05 AC 31 ms
22,400 KB
testcase_06 AC 34 ms
16,000 KB
testcase_07 AC 31 ms
21,376 KB
testcase_08 TLE -
testcase_09 AC 799 ms
21,376 KB
testcase_10 AC 94 ms
16,128 KB
testcase_11 AC 42 ms
22,400 KB
testcase_12 AC 77 ms
16,000 KB
testcase_13 TLE -
testcase_14 AC 797 ms
16,000 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 673 ms
16,128 KB
testcase_19 AC 177 ms
10,624 KB
testcase_20 AC 517 ms
10,624 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 27 ms
10,752 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 291 ms
10,752 KB
testcase_30 AC 435 ms
21,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a,b):
    a += b
    if a >= 10:
        a = a%10 + 1
    return a

def g(s):
    length = len(s)
    if length == 1:
        return s
    ary = [int(c) for c in s]
    for i in range(length):        
        for j in range(length - i - 1):
            ary[j] = f(ary[j], ary[j+1])
    return ary[0]

n = int(input())
for i in range(n):
    s = input()
    print(g(s))
0