結果

問題 No.909 たぴの配置
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-05-03 23:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 3,000 ms
コード長 294 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 108,896 KB
最終ジャッジ日時 2024-07-02 21:49:50
合計ジャッジ時間 5,261 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 42 ms
51,584 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 37 ms
51,456 KB
testcase_05 AC 175 ms
108,896 KB
testcase_06 AC 167 ms
108,624 KB
testcase_07 AC 155 ms
105,060 KB
testcase_08 AC 171 ms
108,608 KB
testcase_09 AC 172 ms
108,592 KB
testcase_10 AC 156 ms
104,784 KB
testcase_11 AC 151 ms
104,760 KB
testcase_12 AC 165 ms
108,168 KB
testcase_13 AC 164 ms
108,440 KB
testcase_14 AC 145 ms
105,188 KB
testcase_15 AC 146 ms
104,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int,input().split()))
Y = list(map(int,input().split()))
ans = 10**20
for x,y in zip(X,Y):
    ans = min(ans,x+y)
inf = 10**10
print(ans)
print(inf)
for x,y in zip(X,Y):
    cand = x
    if abs(ans-cand) > y:
        cand = ans-y
    print(cand+inf)
print(ans+inf)
0