結果

問題 No.909 たぴの配置
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-22 15:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 185 ms / 3,000 ms
コード長 529 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,252 KB
最終ジャッジ日時 2024-10-11 07:14:46
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 154 ms
108,668 KB
testcase_06 AC 152 ms
108,728 KB
testcase_07 AC 154 ms
105,416 KB
testcase_08 AC 183 ms
108,812 KB
testcase_09 AC 185 ms
109,252 KB
testcase_10 AC 174 ms
105,920 KB
testcase_11 AC 162 ms
105,708 KB
testcase_12 AC 144 ms
108,668 KB
testcase_13 AC 156 ms
108,792 KB
testcase_14 AC 163 ms
105,172 KB
testcase_15 AC 161 ms
105,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))

ans = 10**18
id = -1
for i in range(n):
    x = X[i]
    y = Y[i]
    if ans >= x+y:
        xm, ym = x, y
        ans = x+y

print(ans)
print(0)
for i in range(n):
    x = X[i]
    y = Y[i]
    if x >= ans and y >= ans:
        print(ans)
    elif x >= ans and y < ans:
        print(ans)
    elif x < ans and y >= ans:
        print(0)
    else:
        if x <= xm:
            print(x)
        else:
            print(ans-y)
print(ans)
0