結果

問題 No.909 たぴの配置
ユーザー ntudantuda
提出日時 2024-02-04 21:22:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 3,000 ms
コード長 233 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,132 KB
最終ジャッジ日時 2024-09-28 11:20:57
合計ジャッジ時間 5,336 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
51,584 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 149 ms
108,684 KB
testcase_06 AC 147 ms
109,132 KB
testcase_07 AC 140 ms
105,308 KB
testcase_08 AC 149 ms
108,908 KB
testcase_09 AC 155 ms
109,016 KB
testcase_10 AC 145 ms
105,548 KB
testcase_11 AC 144 ms
105,088 KB
testcase_12 AC 148 ms
108,488 KB
testcase_13 AC 147 ms
108,568 KB
testcase_14 AC 140 ms
105,184 KB
testcase_15 AC 136 ms
104,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

0