結果

問題 No.432 占い(Easy)
ユーザー lenoleno
提出日時 2017-08-30 17:25:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 554 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-04-24 07:19:08
合計ジャッジ時間 3,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
11,008 KB
testcase_01 AC 36 ms
11,008 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 38 ms
10,880 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 37 ms
10,880 KB
testcase_08 AC 32 ms
11,008 KB
testcase_09 AC 35 ms
10,880 KB
testcase_10 AC 38 ms
10,880 KB
testcase_11 AC 85 ms
10,880 KB
testcase_12 AC 549 ms
10,880 KB
testcase_13 AC 554 ms
11,008 KB
testcase_14 AC 83 ms
10,880 KB
testcase_15 AC 33 ms
10,880 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 AC 339 ms
11,008 KB
testcase_18 AC 288 ms
10,880 KB
testcase_19 AC 198 ms
10,880 KB
testcase_20 AC 105 ms
11,008 KB
testcase_21 AC 118 ms
11,008 KB
testcase_22 AC 38 ms
11,008 KB
testcase_23 AC 35 ms
10,880 KB
testcase_24 AC 35 ms
10,880 KB
testcase_25 AC 35 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

def solve(N:int):
    STR = list(str(N))
    tmp = []
    while STR.__len__() > 1:
        for i in range(STR.__len__() - 1):
            tmpN = int(STR[i]) + int(STR[i+1])
            if tmpN > 9:
                tmpL = list(str(tmpN))
                tmpN = int(tmpL[0]) + int(tmpL[1])
            tmp.append(tmpN)
        STR = copy.deepcopy(tmp)
        tmp.clear()
    return STR[0]

if __name__ == '__main__':
    T = int(input())
    S = []
    for i in range(T):
        S.append(input())
    for j in range(T):
        print(solve(S[j]))
0