結果

問題 No.909 たぴの配置
ユーザー rlangevinrlangevin
提出日時 2023-01-03 16:11:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 3,000 ms
コード長 223 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,808 KB
最終ジャッジ日時 2024-11-27 01:58:55
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 35 ms
51,072 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 135 ms
108,564 KB
testcase_06 AC 138 ms
108,240 KB
testcase_07 AC 132 ms
105,184 KB
testcase_08 AC 147 ms
108,060 KB
testcase_09 AC 147 ms
108,260 KB
testcase_10 AC 136 ms
105,304 KB
testcase_11 AC 134 ms
105,084 KB
testcase_12 AC 133 ms
108,100 KB
testcase_13 AC 136 ms
108,808 KB
testcase_14 AC 131 ms
105,052 KB
testcase_15 AC 131 ms
105,320 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