結果

問題 No.909 たぴの配置
ユーザー lloyzlloyz
提出日時 2022-07-16 21:31:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 424 ms / 3,000 ms
コード長 282 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,556 KB
最終ジャッジ日時 2024-06-28 21:58:23
合計ジャッジ時間 7,694 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 413 ms
42,220 KB
testcase_06 AC 419 ms
44,864 KB
testcase_07 AC 384 ms
41,168 KB
testcase_08 AC 398 ms
44,748 KB
testcase_09 AC 421 ms
45,556 KB
testcase_10 AC 389 ms
44,360 KB
testcase_11 AC 388 ms
44,672 KB
testcase_12 AC 408 ms
43,512 KB
testcase_13 AC 424 ms
44,720 KB
testcase_14 AC 378 ms
38,372 KB
testcase_15 AC 384 ms
44,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

XY = [X[i] + Y[i] for i in range(n)]
ans = min(XY)
print(ans)

ANS = []
for i in range(n):
    ANS.append(min(X[i], abs(ans - Y[i])))
flag = True
ANS = [0] + ANS + [ans]
print(*ANS, sep='\n')
0