結果

問題 No.909 たぴの配置
ユーザー rlangevinrlangevin
提出日時 2023-01-03 16:11:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 3,000 ms
コード長 223 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 109,036 KB
最終ジャッジ日時 2024-05-05 07:14:51
合計ジャッジ時間 4,230 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 141 ms
108,812 KB
testcase_06 AC 141 ms
108,836 KB
testcase_07 AC 132 ms
105,492 KB
testcase_08 AC 147 ms
109,036 KB
testcase_09 AC 154 ms
108,964 KB
testcase_10 AC 138 ms
105,420 KB
testcase_11 AC 136 ms
105,584 KB
testcase_12 AC 137 ms
108,892 KB
testcase_13 AC 138 ms
108,812 KB
testcase_14 AC 131 ms
105,260 KB
testcase_15 AC 130 ms
105,456 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