結果

問題 No.909 たぴの配置
ユーザー 草苺奶昔草苺奶昔
提出日時 2024-09-09 00:04:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 486 ms / 3,000 ms
コード長 223 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 39,708 KB
最終ジャッジ日時 2024-09-09 00:04:59
合計ジャッジ時間 8,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 473 ms
36,312 KB
testcase_06 AC 482 ms
39,708 KB
testcase_07 AC 451 ms
36,300 KB
testcase_08 AC 474 ms
37,616 KB
testcase_09 AC 486 ms
38,664 KB
testcase_10 AC 451 ms
36,400 KB
testcase_11 AC 449 ms
36,236 KB
testcase_12 AC 466 ms
38,580 KB
testcase_13 AC 484 ms
38,760 KB
testcase_14 AC 449 ms
36,408 KB
testcase_15 AC 443 ms
36,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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