結果

問題 No.432 占い(Easy)
ユーザー maspymaspy
提出日時 2020-01-19 02:39:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,712 KB
最終ジャッジ日時 2024-06-28 17:35:42
合計ジャッジ時間 13,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 450 ms
44,332 KB
testcase_01 WA -
testcase_02 AC 445 ms
44,328 KB
testcase_03 AC 440 ms
44,076 KB
testcase_04 AC 442 ms
44,116 KB
testcase_05 AC 447 ms
44,328 KB
testcase_06 WA -
testcase_07 AC 444 ms
44,072 KB
testcase_08 AC 451 ms
44,328 KB
testcase_09 WA -
testcase_10 AC 445 ms
44,452 KB
testcase_11 AC 447 ms
44,064 KB
testcase_12 AC 446 ms
44,072 KB
testcase_13 AC 447 ms
44,332 KB
testcase_14 AC 445 ms
44,460 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 456 ms
43,936 KB
testcase_19 AC 455 ms
44,452 KB
testcase_20 AC 444 ms
44,328 KB
testcase_21 AC 446 ms
43,952 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

T = int(readline())
S = readlines()

answer = []
for s in S:
    A = np.array(list(s.decode().rstrip()),np.int32)
    while len(A) > 1:
        A = (A[:-1] + A[1:]) % 9
    x = A[0]
    if not x:
        x = 9
    answer.append(x)

print('\n'.join(map(str,answer)))
0