結果

問題 No.909 たぴの配置
ユーザー roarisroaris
提出日時 2019-10-21 22:39:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 3,000 ms
コード長 357 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,436 KB
最終ジャッジ日時 2024-07-02 17:51:54
合計ジャッジ時間 4,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 41 ms
51,328 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 164 ms
109,436 KB
testcase_06 AC 157 ms
109,176 KB
testcase_07 AC 149 ms
105,468 KB
testcase_08 AC 163 ms
109,196 KB
testcase_09 AC 164 ms
108,968 KB
testcase_10 AC 153 ms
105,856 KB
testcase_11 AC 151 ms
105,412 KB
testcase_12 AC 166 ms
108,820 KB
testcase_13 AC 167 ms
109,172 KB
testcase_14 AC 150 ms
105,240 KB
testcase_15 AC 151 ms
105,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
max_d = min(Xi+Yi for Xi, Yi in zip(X, Y))
pos = [0] * (N+2)
pos[-1] = max_d

for i in range(1, N+1):
    Xi, Yi = X[i-1], Y[i-1]
    
    if max_d > Yi:
        pos[i] = max_d-Yi

print(max_d)

for pos_i in pos:
    print(pos_i)
0