結果

問題 No.909 たぴの配置
ユーザー etale.K3etale.K3
提出日時 2021-05-10 19:39:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 346 ms / 3,000 ms
コード長 185 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 11,832 KB
実行使用メモリ 42,044 KB
最終ジャッジ日時 2023-10-20 03:58:59
合計ジャッジ時間 7,695 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,084 KB
testcase_01 AC 29 ms
10,084 KB
testcase_02 AC 31 ms
10,084 KB
testcase_03 AC 31 ms
10,084 KB
testcase_04 AC 28 ms
10,084 KB
testcase_05 AC 332 ms
39,888 KB
testcase_06 AC 344 ms
41,120 KB
testcase_07 AC 315 ms
39,712 KB
testcase_08 AC 335 ms
39,856 KB
testcase_09 AC 346 ms
42,044 KB
testcase_10 AC 322 ms
39,700 KB
testcase_11 AC 321 ms
39,392 KB
testcase_12 AC 338 ms
41,000 KB
testcase_13 AC 345 ms
40,992 KB
testcase_14 AC 323 ms
39,712 KB
testcase_15 AC 324 ms
39,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))

d = min(x+y for x,y in zip(X,Y))

print(d)

print(0)

for x in X:
    print(min(x,d))

print(d)
0