結果

問題 No.909 たぴの配置
ユーザー mlihua09mlihua09
提出日時 2020-09-16 16:42:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 3,000 ms
コード長 201 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 110,664 KB
最終ジャッジ日時 2024-06-22 03:21:55
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,348 KB
testcase_01 AC 38 ms
52,744 KB
testcase_02 AC 38 ms
52,428 KB
testcase_03 AC 37 ms
53,100 KB
testcase_04 AC 36 ms
52,772 KB
testcase_05 AC 145 ms
110,428 KB
testcase_06 AC 142 ms
110,352 KB
testcase_07 AC 140 ms
106,808 KB
testcase_08 AC 150 ms
110,168 KB
testcase_09 AC 150 ms
110,568 KB
testcase_10 AC 138 ms
106,656 KB
testcase_11 AC 137 ms
106,944 KB
testcase_12 AC 136 ms
110,588 KB
testcase_13 AC 136 ms
110,664 KB
testcase_14 AC 132 ms
106,716 KB
testcase_15 AC 136 ms
106,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())


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

M = min([X[i] + Y[i] for i in range(N)])
print(M)

print(0)

for x in X:
    print(min(x, M))
    
print(M)
0