結果

問題 No.909 たぴの配置
ユーザー timitimi
提出日時 2021-01-06 10:40:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 486 ms / 3,000 ms
コード長 197 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,832 KB
最終ジャッジ日時 2024-11-06 19:46:39
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 462 ms
36,564 KB
testcase_06 AC 486 ms
39,832 KB
testcase_07 AC 440 ms
36,408 KB
testcase_08 AC 462 ms
37,732 KB
testcase_09 AC 485 ms
38,664 KB
testcase_10 AC 448 ms
36,416 KB
testcase_11 AC 441 ms
36,364 KB
testcase_12 AC 465 ms
38,456 KB
testcase_13 AC 484 ms
38,756 KB
testcase_14 AC 443 ms
36,412 KB
testcase_15 AC 437 ms
36,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
d=10**7
for i in range(N):
  d=min(d,A[i]+B[i])
print(d)
print(0)
for i in range(N):
  print(min(d,A[i]))
print(d)
0