結果

問題 No.1108 移調
ユーザー keijakkeijak
提出日時 2020-07-10 21:23:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,504 KB
最終ジャッジ日時 2024-04-19 15:25:53
合計ジャッジ時間 15,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 530 ms
44,244 KB
testcase_01 AC 531 ms
43,988 KB
testcase_02 AC 525 ms
43,984 KB
testcase_03 AC 533 ms
43,988 KB
testcase_04 AC 521 ms
44,376 KB
testcase_05 AC 521 ms
44,116 KB
testcase_06 AC 525 ms
43,984 KB
testcase_07 AC 530 ms
43,988 KB
testcase_08 AC 545 ms
43,984 KB
testcase_09 AC 537 ms
44,368 KB
testcase_10 AC 538 ms
44,240 KB
testcase_11 AC 532 ms
44,244 KB
testcase_12 AC 530 ms
43,984 KB
testcase_13 AC 530 ms
43,984 KB
testcase_14 AC 542 ms
44,120 KB
testcase_15 AC 526 ms
44,240 KB
testcase_16 AC 526 ms
44,372 KB
testcase_17 AC 527 ms
44,112 KB
testcase_18 AC 528 ms
44,372 KB
testcase_19 AC 523 ms
44,504 KB
testcase_20 AC 524 ms
44,252 KB
testcase_21 AC 528 ms
43,984 KB
testcase_22 AC 522 ms
44,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

sys.setrecursionlimit(10 ** 8)
ini = lambda: int(sys.stdin.readline())
inm = lambda: map(int, sys.stdin.readline().split())
inl = lambda: list(inm())
ins = lambda: sys.stdin.readline().rstrip()
debug = lambda *a, **kw: print("\033[33m", *a, "\033[0m", **dict(file=sys.stderr, **kw))

N, H = inm()
T = np.array(inl())


print(*(T + H))

0