結果

問題 No.909 たぴの配置
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-22 15:25:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 108,984 KB
最終ジャッジ日時 2024-10-11 07:14:09
合計ジャッジ時間 6,374 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 36 ms
51,456 KB
testcase_05 AC 164 ms
108,292 KB
testcase_06 AC 149 ms
108,984 KB
testcase_07 AC 141 ms
105,252 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 160 ms
108,204 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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 <= ans:
            print(xm)
        else:
            print(ans-ym)
print(ans)
0