結果

問題 No.909 たぴの配置
ユーザー 👑 rin204rin204
提出日時 2022-01-19 00:03:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 3,000 ms
コード長 199 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,592 KB
最終ジャッジ日時 2024-11-23 13:38:05
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 146 ms
108,888 KB
testcase_06 AC 145 ms
108,684 KB
testcase_07 AC 140 ms
105,312 KB
testcase_08 AC 156 ms
108,512 KB
testcase_09 AC 158 ms
109,592 KB
testcase_10 AC 147 ms
105,224 KB
testcase_11 AC 141 ms
105,340 KB
testcase_12 AC 142 ms
108,580 KB
testcase_13 AC 149 ms
108,944 KB
testcase_14 AC 144 ms
105,568 KB
testcase_15 AC 142 ms
105,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
X = list(map(int, input().split()))
Y = list(map(int, input().split()))
max_ = min(x + y for x, y in zip(X, Y))

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