結果

問題 No.909 たぴの配置
ユーザー convexineqconvexineq
提出日時 2021-04-11 16:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 3,000 ms
コード長 186 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 113,692 KB
最終ジャッジ日時 2024-06-27 11:07:43
合計ジャッジ時間 5,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 39 ms
51,500 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 40 ms
51,456 KB
testcase_05 AC 174 ms
113,152 KB
testcase_06 AC 161 ms
113,680 KB
testcase_07 AC 153 ms
109,620 KB
testcase_08 AC 171 ms
113,556 KB
testcase_09 AC 174 ms
113,692 KB
testcase_10 AC 163 ms
110,180 KB
testcase_11 AC 158 ms
110,368 KB
testcase_12 AC 159 ms
112,768 KB
testcase_13 AC 159 ms
112,860 KB
testcase_14 AC 157 ms
109,360 KB
testcase_15 AC 156 ms
109,836 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