結果

問題 No.432 占い(Easy)
ユーザー 💕💖💞💕💖💞
提出日時 2017-01-28 15:18:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 371 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-06 07:46:32
合計ジャッジ時間 3,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,520 KB
testcase_01 AC 32 ms
11,520 KB
testcase_02 AC 30 ms
11,520 KB
testcase_03 AC 30 ms
11,520 KB
testcase_04 AC 33 ms
11,392 KB
testcase_05 AC 31 ms
11,392 KB
testcase_06 AC 31 ms
11,392 KB
testcase_07 AC 33 ms
11,520 KB
testcase_08 AC 31 ms
11,392 KB
testcase_09 AC 34 ms
11,520 KB
testcase_10 AC 37 ms
11,392 KB
testcase_11 AC 57 ms
11,392 KB
testcase_12 RE -
testcase_13 AC 286 ms
15,872 KB
testcase_14 AC 56 ms
11,520 KB
testcase_15 AC 31 ms
11,520 KB
testcase_16 AC 31 ms
11,520 KB
testcase_17 RE -
testcase_18 AC 158 ms
12,672 KB
testcase_19 AC 116 ms
11,904 KB
testcase_20 AC 70 ms
11,648 KB
testcase_21 AC 74 ms
12,160 KB
testcase_22 AC 34 ms
11,520 KB
testcase_23 AC 33 ms
11,392 KB
testcase_24 AC 34 ms
11,648 KB
testcase_25 AC 33 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import math
import itertools
import typing

T = int(input())
S = [list(map(int, list(input()))) for _ in range(T)]
for s in S:
  def rec(s: list) -> None:
    if len(s) == 1:
        print(s.pop())
        return
    arr = [int(s) if len(s) == 1 else int(s[1]) + int(s[0]) for s in [str(p[0] + p[1]) for p in list(zip(s, s[1:]))]]
    return rec( arr )
  rec(s)
0