結果

問題 No.1108 移調
ユーザー keijakkeijak
提出日時 2020-07-10 21:23:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 44,368 KB
最終ジャッジ日時 2024-10-11 07:33:23
合計ジャッジ時間 14,784 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
44,240 KB
testcase_01 AC 529 ms
43,732 KB
testcase_02 AC 528 ms
43,768 KB
testcase_03 AC 528 ms
43,868 KB
testcase_04 AC 522 ms
43,860 KB
testcase_05 AC 524 ms
43,980 KB
testcase_06 AC 524 ms
44,148 KB
testcase_07 AC 518 ms
44,116 KB
testcase_08 AC 522 ms
43,736 KB
testcase_09 AC 515 ms
43,736 KB
testcase_10 AC 519 ms
43,864 KB
testcase_11 AC 527 ms
44,116 KB
testcase_12 AC 543 ms
43,860 KB
testcase_13 AC 521 ms
44,108 KB
testcase_14 AC 528 ms
43,992 KB
testcase_15 AC 525 ms
43,864 KB
testcase_16 AC 531 ms
44,244 KB
testcase_17 AC 523 ms
44,368 KB
testcase_18 AC 525 ms
43,740 KB
testcase_19 AC 528 ms
43,736 KB
testcase_20 AC 528 ms
43,988 KB
testcase_21 AC 531 ms
43,856 KB
testcase_22 AC 531 ms
44,116 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