結果

問題 No.432 占い(Easy)
ユーザー 💕💖💞💕💖💞
提出日時 2017-01-28 15:22:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-06 07:46:58
合計ジャッジ時間 3,428 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,520 KB
testcase_01 AC 35 ms
11,520 KB
testcase_02 AC 34 ms
11,392 KB
testcase_03 AC 35 ms
11,520 KB
testcase_04 AC 37 ms
11,392 KB
testcase_05 AC 33 ms
11,520 KB
testcase_06 AC 35 ms
11,648 KB
testcase_07 AC 39 ms
11,520 KB
testcase_08 AC 36 ms
11,648 KB
testcase_09 AC 40 ms
11,520 KB
testcase_10 AC 41 ms
11,392 KB
testcase_11 AC 68 ms
11,520 KB
testcase_12 AC 333 ms
16,000 KB
testcase_13 AC 330 ms
15,872 KB
testcase_14 AC 68 ms
11,392 KB
testcase_15 AC 35 ms
11,392 KB
testcase_16 AC 35 ms
11,392 KB
testcase_17 AC 246 ms
15,872 KB
testcase_18 AC 188 ms
12,544 KB
testcase_19 AC 135 ms
12,160 KB
testcase_20 AC 82 ms
11,648 KB
testcase_21 AC 89 ms
11,904 KB
testcase_22 AC 41 ms
11,520 KB
testcase_23 AC 39 ms
11,392 KB
testcase_24 AC 40 ms
11,776 KB
testcase_25 AC 39 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import math
import itertools
import typing
import sys
sys.setrecursionlimit(10000)
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