結果

問題 No.909 たぴの配置
ユーザー mkawa2mkawa2
提出日時 2019-11-02 12:39:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 360 ms / 3,000 ms
コード長 358 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 38,600 KB
最終ジャッジ日時 2024-09-14 23:09:06
合計ジャッジ時間 6,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 342 ms
37,268 KB
testcase_06 AC 354 ms
38,192 KB
testcase_07 AC 327 ms
35,944 KB
testcase_08 AC 345 ms
37,340 KB
testcase_09 AC 360 ms
38,304 KB
testcase_10 AC 329 ms
37,448 KB
testcase_11 AC 326 ms
37,280 KB
testcase_12 AC 340 ms
38,600 KB
testcase_13 AC 359 ms
38,224 KB
testcase_14 AC 325 ms
35,944 KB
testcase_15 AC 326 ms
37,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
input = sys.stdin.readline
int1 = lambda x: int(x) - 1

def main():
    n = int(input())
    xx = list(map(int, input().split()))
    yy = list(map(int, input().split()))
    d = min(x + y for x, y in zip(xx, yy))
    print(d)
    print(0)
    for x, y in zip(xx, yy):
        print(min(x, d))
    print(d)

main()
0