結果

問題 No.909 たぴの配置
ユーザー H20H20
提出日時 2020-12-04 11:08:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 3,000 ms
コード長 224 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 109,004 KB
最終ジャッジ日時 2024-09-14 21:29:44
合計ジャッジ時間 4,228 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,328 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 40 ms
51,328 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 AC 157 ms
108,376 KB
testcase_06 AC 143 ms
109,004 KB
testcase_07 AC 133 ms
105,240 KB
testcase_08 AC 153 ms
108,580 KB
testcase_09 AC 156 ms
108,580 KB
testcase_10 AC 143 ms
105,348 KB
testcase_11 AC 143 ms
105,304 KB
testcase_12 AC 140 ms
108,352 KB
testcase_13 AC 141 ms
108,564 KB
testcase_14 AC 137 ms
105,172 KB
testcase_15 AC 137 ms
105,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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