結果

問題 No.432 占い(Easy)
ユーザー rlangevinrlangevin
提出日時 2024-08-17 12:13:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-08-17 12:13:35
合計ジャッジ時間 3,399 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 38 ms
53,068 KB
testcase_04 AC 50 ms
64,512 KB
testcase_05 AC 39 ms
53,248 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 52 ms
64,896 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 60 ms
63,360 KB
testcase_10 AC 61 ms
68,736 KB
testcase_11 AC 76 ms
76,032 KB
testcase_12 AC 127 ms
76,032 KB
testcase_13 AC 126 ms
75,748 KB
testcase_14 AC 78 ms
75,776 KB
testcase_15 AC 39 ms
53,120 KB
testcase_16 AC 38 ms
52,992 KB
testcase_17 AC 88 ms
75,584 KB
testcase_18 AC 123 ms
75,544 KB
testcase_19 AC 88 ms
75,392 KB
testcase_20 AC 78 ms
75,648 KB
testcase_21 AC 77 ms
75,776 KB
testcase_22 AC 59 ms
66,816 KB
testcase_23 AC 56 ms
64,512 KB
testcase_24 AC 57 ms
63,488 KB
testcase_25 AC 58 ms
63,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def g(n):
    if n >= 10:
        n = int(str(n)[0])+int(str(n)[1])
    if n >= 10:
        n = int(str(n)[0])+int(str(n)[1])
    return str(n)

def f(s):
    ss = ""
    for i in range(len(s) - 1):
        ss += g(int(s[i]+s[i+1]))
    return ss

T = int(input())
for _ in range(T):
    s = input()
    while len(s) > 1:
        s = f(s)
    print(s)
0