結果

問題 No.909 たぴの配置
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-22 10:40:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 3,000 ms
コード長 323 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 125,416 KB
最終ジャッジ日時 2024-06-07 20:16:24
合計ジャッジ時間 5,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 182 ms
117,780 KB
testcase_06 AC 190 ms
125,416 KB
testcase_07 AC 174 ms
114,564 KB
testcase_08 AC 185 ms
117,872 KB
testcase_09 AC 184 ms
118,068 KB
testcase_10 AC 173 ms
118,196 KB
testcase_11 AC 173 ms
119,080 KB
testcase_12 AC 178 ms
118,420 KB
testcase_13 AC 183 ms
118,052 KB
testcase_14 AC 171 ms
118,472 KB
testcase_15 AC 172 ms
117,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = tuple(map(int, input().split()))
Y = tuple(map(int, input().split()))
ans = min(x + y for x, y in zip(X, Y))

pos = [0] * (n + 2)
pos[n + 1] = ans
for i, (x, y) in enumerate(zip(X, Y), 1):
    if x < y:
        pos[i] = min(ans, x)
    else:
        pos[i] = max(0, ans - y)

print(ans, *pos, sep="\n")
0