結果

問題 No.432 占い(Easy)
ユーザー matriematrie
提出日時 2020-12-05 10:07:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 43,804 KB
最終ジャッジ日時 2024-09-15 16:49:34
合計ジャッジ時間 19,412 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 538 ms
43,288 KB
testcase_01 AC 534 ms
43,664 KB
testcase_02 AC 529 ms
43,680 KB
testcase_03 AC 529 ms
43,676 KB
testcase_04 AC 535 ms
43,412 KB
testcase_05 AC 538 ms
43,424 KB
testcase_06 AC 530 ms
43,548 KB
testcase_07 AC 527 ms
43,804 KB
testcase_08 AC 522 ms
43,420 KB
testcase_09 AC 537 ms
43,556 KB
testcase_10 AC 538 ms
43,800 KB
testcase_11 AC 555 ms
43,544 KB
testcase_12 AC 765 ms
43,668 KB
testcase_13 AC 771 ms
43,676 KB
testcase_14 AC 556 ms
43,672 KB
testcase_15 AC 529 ms
43,552 KB
testcase_16 AC 534 ms
43,552 KB
testcase_17 AC 780 ms
43,548 KB
testcase_18 AC 652 ms
43,804 KB
testcase_19 AC 621 ms
43,416 KB
testcase_20 AC 576 ms
43,804 KB
testcase_21 AC 578 ms
43,288 KB
testcase_22 AC 541 ms
43,288 KB
testcase_23 AC 539 ms
43,420 KB
testcase_24 AC 540 ms
43,168 KB
testcase_25 AC 546 ms
43,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as p
n = int(input())

for i in range(n):
	s= [int(x) for x in list(input())]
	for j in range(len(s)-1):
		s=p.array(s[:-1])+p.array(s[1:])
		s=[x//10+x%10 for x in s]
	print(*s)
0