結果

問題 No.909 たぴの配置
ユーザー pluto77pluto77
提出日時 2019-11-03 16:22:41
言語 Python2
(2.7.18)
結果
AC  
実行時間 358 ms / 3,000 ms
コード長 191 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 32,912 KB
最終ジャッジ日時 2024-09-14 23:32:31
合計ジャッジ時間 6,592 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 12 ms
6,016 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 11 ms
6,016 KB
testcase_04 AC 11 ms
6,016 KB
testcase_05 AC 335 ms
32,912 KB
testcase_06 AC 345 ms
32,524 KB
testcase_07 AC 319 ms
30,356 KB
testcase_08 AC 341 ms
32,020 KB
testcase_09 AC 358 ms
32,648 KB
testcase_10 AC 321 ms
29,588 KB
testcase_11 AC 318 ms
29,432 KB
testcase_12 AC 345 ms
31,996 KB
testcase_13 AC 357 ms
31,736 KB
testcase_14 AC 325 ms
30,488 KB
testcase_15 AC 318 ms
29,332 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