結果

問題 No.909 たぴの配置
ユーザー convexineqconvexineq
提出日時 2021-04-11 16:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 3,000 ms
コード長 186 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 86,908 KB
実行使用メモリ 136,272 KB
最終ジャッジ日時 2023-09-09 18:31:51
合計ジャッジ時間 6,083 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,472 KB
testcase_01 AC 73 ms
71,472 KB
testcase_02 AC 71 ms
71,536 KB
testcase_03 AC 71 ms
71,556 KB
testcase_04 AC 71 ms
71,148 KB
testcase_05 AC 227 ms
133,604 KB
testcase_06 AC 198 ms
136,272 KB
testcase_07 AC 185 ms
125,916 KB
testcase_08 AC 208 ms
133,448 KB
testcase_09 AC 212 ms
136,220 KB
testcase_10 AC 194 ms
126,336 KB
testcase_11 AC 193 ms
125,268 KB
testcase_12 AC 193 ms
132,840 KB
testcase_13 AC 196 ms
135,396 KB
testcase_14 AC 187 ms
125,784 KB
testcase_15 AC 190 ms
125,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*x, = map(int,input().split())
*y, = map(int,input().split())
v = min(xi+yi for xi,yi in zip(x,y))
print(v)
print(0)
for xi,yi in zip(x,y):
    print(min(xi,v))
print(v)
0