結果

問題 No.909 たぴの配置
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-22 10:40:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 218 ms / 3,000 ms
コード長 323 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 125,160 KB
最終ジャッジ日時 2024-12-26 05:17:36
合計ジャッジ時間 5,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 47 ms
51,712 KB
testcase_04 AC 42 ms
51,456 KB
testcase_05 AC 218 ms
118,364 KB
testcase_06 AC 205 ms
125,160 KB
testcase_07 AC 183 ms
113,992 KB
testcase_08 AC 198 ms
118,004 KB
testcase_09 AC 211 ms
118,192 KB
testcase_10 AC 181 ms
118,696 KB
testcase_11 AC 185 ms
119,120 KB
testcase_12 AC 203 ms
118,292 KB
testcase_13 AC 194 ms
118,092 KB
testcase_14 AC 186 ms
117,700 KB
testcase_15 AC 194 ms
118,344 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