結果

問題 No.180 美しいWhitespace (2)
ユーザー roiti46roiti46
提出日時 2015-04-06 00:33:42
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 1,527 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 158,872 KB
最終ジャッジ日時 2024-07-04 02:30:04
合計ジャッジ時間 19,786 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
75,680 KB
testcase_01 AC 67 ms
75,704 KB
testcase_02 AC 71 ms
75,788 KB
testcase_03 AC 67 ms
75,544 KB
testcase_04 AC 88 ms
77,752 KB
testcase_05 AC 127 ms
79,640 KB
testcase_06 WA -
testcase_07 AC 364 ms
89,476 KB
testcase_08 AC 571 ms
94,264 KB
testcase_09 AC 128 ms
78,776 KB
testcase_10 AC 126 ms
78,856 KB
testcase_11 AC 3,660 ms
150,932 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1,778 ms
113,208 KB
testcase_15 AC 544 ms
86,160 KB
testcase_16 AC 278 ms
80,664 KB
testcase_17 AC 167 ms
78,884 KB
testcase_18 AC 129 ms
78,864 KB
testcase_19 AC 121 ms
78,596 KB
testcase_20 AC 68 ms
75,684 KB
testcase_21 AC 64 ms
75,536 KB
testcase_22 AC 67 ms
75,664 KB
testcase_23 AC 68 ms
75,556 KB
testcase_24 AC 68 ms
75,316 KB
testcase_25 AC 69 ms
75,292 KB
testcase_26 AC 68 ms
75,676 KB
testcase_27 AC 69 ms
75,784 KB
testcase_28 AC 71 ms
75,540 KB
testcase_29 AC 70 ms
75,688 KB
testcase_30 AC 100 ms
78,584 KB
testcase_31 AC 102 ms
78,632 KB
testcase_32 AC 85 ms
78,216 KB
testcase_33 AC 100 ms
78,608 KB
testcase_34 AC 98 ms
78,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(raw_input())
ab = [map(int, raw_input().split()) for i in xrange(N)]

candx = set([1])
for i in xrange(N):
    a1, b1 = ab[i]
    for j in xrange(i+1, N):
        a2, b2 = ab[j]
        if b2-b1 == 0:
            continue
        x = abs((a1-a2)/(b1-b2))
        if x >  0: candx.add(x)

ax, mn = 0, 10**50
for x in candx:
    abx = [a+b*x for a,b in ab]
    tmp = max(abx) - min(abx)
    if tmp < mn:
        mn = tmp
        ax = x
    if tmp == mn:
        ax = min(x, ax)
print ax
0