結果

問題 No.909 たぴの配置
ユーザー mlihua09mlihua09
提出日時 2020-09-16 16:42:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 3,000 ms
コード長 201 bytes
コンパイル時間 860 ms
コンパイル使用メモリ 85,712 KB
実行使用メモリ 111,808 KB
最終ジャッジ日時 2023-09-04 03:40:24
合計ジャッジ時間 6,253 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,236 KB
testcase_01 AC 77 ms
71,252 KB
testcase_02 AC 77 ms
71,192 KB
testcase_03 AC 79 ms
71,072 KB
testcase_04 AC 76 ms
70,852 KB
testcase_05 AC 256 ms
110,704 KB
testcase_06 AC 183 ms
111,736 KB
testcase_07 AC 173 ms
107,860 KB
testcase_08 AC 191 ms
111,212 KB
testcase_09 AC 193 ms
111,808 KB
testcase_10 AC 181 ms
108,696 KB
testcase_11 AC 178 ms
108,908 KB
testcase_12 AC 178 ms
111,372 KB
testcase_13 AC 182 ms
111,316 KB
testcase_14 AC 177 ms
108,176 KB
testcase_15 AC 173 ms
108,060 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