結果

問題 No.909 たぴの配置
ユーザー pluto77pluto77
提出日時 2019-11-03 16:22:41
言語 Python2
(2.7.18)
結果
AC  
実行時間 352 ms / 3,000 ms
コード長 191 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 6,508 KB
実行使用メモリ 32,424 KB
最終ジャッジ日時 2023-10-13 01:47:50
合計ジャッジ時間 7,072 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,956 KB
testcase_01 AC 11 ms
5,828 KB
testcase_02 AC 11 ms
6,076 KB
testcase_03 AC 11 ms
5,856 KB
testcase_04 AC 11 ms
5,924 KB
testcase_05 AC 336 ms
32,272 KB
testcase_06 AC 352 ms
32,376 KB
testcase_07 AC 320 ms
30,248 KB
testcase_08 AC 332 ms
31,620 KB
testcase_09 AC 347 ms
32,424 KB
testcase_10 AC 315 ms
29,164 KB
testcase_11 AC 316 ms
29,092 KB
testcase_12 AC 330 ms
31,500 KB
testcase_13 AC 344 ms
31,212 KB
testcase_14 AC 321 ms
30,268 KB
testcase_15 AC 312 ms
29,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki909

n=int(raw_input())
x=map(int,raw_input().split())
y=map(int,raw_input().split())
res=min([x[i]+y[i] for i in range(n)])
print res
print 0
for i in x:
    print min(i,res)
print res
0