結果

問題 No.909 たぴの配置
ユーザー Salmonize
提出日時 2020-03-10 13:29:16
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 163 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 40,200 KB
最終ジャッジ日時 2024-11-15 23:11:40
合計ジャッジ時間 6,350 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 2
other RE * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = [tuple(map(int, input().split())) for _ in range(n)]
f = min(x + y for x, y in l)
print(f)
print(0)
for x,_ in l:
    print(min(f,x))
print(f)
0