結果

問題 No.909 たぴの配置
ユーザー stngstng
提出日時 2022-08-08 20:47:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 3,000 ms
コード長 371 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 100,708 KB
最終ジャッジ日時 2024-09-19 05:25:08
合計ジャッジ時間 3,996 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,480 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 32 ms
51,840 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 128 ms
96,652 KB
testcase_06 AC 120 ms
97,056 KB
testcase_07 AC 132 ms
98,028 KB
testcase_08 AC 141 ms
100,708 KB
testcase_09 AC 132 ms
96,984 KB
testcase_10 AC 137 ms
98,660 KB
testcase_11 AC 133 ms
98,236 KB
testcase_12 AC 123 ms
100,508 KB
testcase_13 AC 119 ms
96,852 KB
testcase_14 AC 133 ms
98,404 KB
testcase_15 AC 131 ms
97,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
x = [int(i) for i in input().split()]
y = [int(i) for i in input().split()]

ans = 10**8
ctr = -1

for i in range(n):
    if ans > x[i]+y[i]:
        ans = x[i]+y[i]
        ctr = x[i]

print(ans)
print(0)
for i in range(n):
    if ctr > x[i]:
        print(x[i])
    elif ans - ctr > y[i]:
        print(ans-y[i])
    else:
        print(ctr)
print(ans)
0