結果

問題 No.909 たぴの配置
ユーザー ああいいああいい
提出日時 2022-06-12 18:24:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 3,000 ms
コード長 478 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 110,784 KB
最終ジャッジ日時 2024-09-23 04:42:56
合計ジャッジ時間 4,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,428 KB
testcase_01 AC 41 ms
52,152 KB
testcase_02 AC 38 ms
52,164 KB
testcase_03 AC 38 ms
52,356 KB
testcase_04 AC 37 ms
52,560 KB
testcase_05 AC 146 ms
110,784 KB
testcase_06 AC 146 ms
110,448 KB
testcase_07 AC 139 ms
106,624 KB
testcase_08 AC 157 ms
110,532 KB
testcase_09 AC 154 ms
110,488 KB
testcase_10 AC 144 ms
107,024 KB
testcase_11 AC 142 ms
106,544 KB
testcase_12 AC 144 ms
110,072 KB
testcase_13 AC 146 ms
110,596 KB
testcase_14 AC 139 ms
107,004 KB
testcase_15 AC 139 ms
106,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

m = 10 ** 7
for i in range(N):
    t = X[i] + Y[i]
    if t < m:
        m = t
tapi = [0] * (N + 2)
tapi[-1] = m
for i in range(N):
    if X[i] <= m and Y[i] <= m:
        tapi[i + 1] = m - Y[i]
    elif X[i] > m and Y[i] <= m:
        tapi[i + 1] = m - Y[i]
    elif X[i] <= m and Y[i] > m:
        tapi[i + 1] = X[i]
    else:
        tapi[i + 1] = 0
print(m)
for t in tapi:
    print(t)
0