結果

問題 No.432 占い(Easy)
ユーザー gorugo30gorugo30
提出日時 2021-02-23 21:32:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,204 KB
最終ジャッジ日時 2024-09-22 15:46:08
合計ジャッジ時間 2,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 40 ms
53,120 KB
testcase_04 AC 51 ms
63,872 KB
testcase_05 AC 39 ms
53,120 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 53 ms
64,256 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 57 ms
64,128 KB
testcase_10 AC 58 ms
66,176 KB
testcase_11 AC 73 ms
76,140 KB
testcase_12 AC 106 ms
76,032 KB
testcase_13 AC 107 ms
75,776 KB
testcase_14 AC 72 ms
75,968 KB
testcase_15 AC 39 ms
52,864 KB
testcase_16 AC 39 ms
52,480 KB
testcase_17 AC 88 ms
75,996 KB
testcase_18 AC 96 ms
76,072 KB
testcase_19 AC 85 ms
76,032 KB
testcase_20 AC 76 ms
76,204 KB
testcase_21 AC 75 ms
75,884 KB
testcase_22 AC 59 ms
66,304 KB
testcase_23 AC 56 ms
63,744 KB
testcase_24 AC 58 ms
64,000 KB
testcase_25 AC 56 ms
64,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def comp(x, y):
    x += y
    x = str(x)
    if len(x) > 1:
        return comp(int(x[0]), int(x[1]))
    return x
T = int(input())
for aiueo in range(T):
    S = input()
    while len(S) > 1:
        T = ""
        for i in range(len(S) - 1):
            T += comp(int(S[i]), int(S[i + 1]))
        S = T
    print(S)
0