結果

問題 No.909 たぴの配置
ユーザー tamatotamato
提出日時 2020-02-15 12:02:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 3,000 ms
コード長 404 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 121,128 KB
最終ジャッジ日時 2024-10-06 13:47:18
合計ジャッジ時間 5,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,472 KB
testcase_01 AC 38 ms
52,604 KB
testcase_02 AC 38 ms
52,628 KB
testcase_03 AC 38 ms
52,808 KB
testcase_04 AC 36 ms
52,832 KB
testcase_05 AC 161 ms
120,672 KB
testcase_06 AC 161 ms
121,100 KB
testcase_07 AC 153 ms
115,868 KB
testcase_08 AC 163 ms
120,660 KB
testcase_09 AC 163 ms
121,128 KB
testcase_10 AC 148 ms
115,960 KB
testcase_11 AC 148 ms
115,908 KB
testcase_12 AC 158 ms
121,088 KB
testcase_13 AC 162 ms
121,016 KB
testcase_14 AC 150 ms
116,396 KB
testcase_15 AC 147 ms
115,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

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

    D = [x+y for x, y in zip(X, Y)]
    d = min(D)
    print(d)
    print(0)
    for x, y in zip(X, Y):
        if x < y:
            print(x)
        else:
            print(max(d - y, 0))
    print(d)


if __name__ == '__main__':
    main()
0