結果

問題 No.1041 直線大学
ユーザー mationaruzoumationaruzou
提出日時 2020-05-01 22:02:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 425 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-12-25 09:40:25
合計ジャッジ時間 63,268 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
15,872 KB
testcase_01 AC 566 ms
15,872 KB
testcase_02 AC 572 ms
15,872 KB
testcase_03 AC 667 ms
21,120 KB
testcase_04 AC 727 ms
15,872 KB
testcase_05 AC 521 ms
20,992 KB
testcase_06 AC 780 ms
15,872 KB
testcase_07 AC 1,392 ms
21,376 KB
testcase_08 AC 1,427 ms
16,000 KB
testcase_09 AC 1,451 ms
16,000 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 733 ms
10,496 KB
testcase_21 TLE -
testcase_22 WA -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,507 ms
10,496 KB
testcase_27 TLE -
testcase_28 AC 485 ms
10,624 KB
testcase_29 WA -
testcase_30 AC 512 ms
10,624 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 530 ms
10,624 KB
testcase_34 AC 486 ms
10,624 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 TLE -
testcase_39 AC 1,911 ms
21,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

l = [list(map(int, input().split()))for i in range(n)]
nux = 0
for i in range(1, 101):
    for j in range(101):
        num = 0
        for x in range(101):
            y = i*x+j
            if [x, y] in l:
                num += 1
        nux = max(nux, num)

for j in range(101):
    num = 0
    for i in range(n):
        if l[i][0] == j:
            num += 1
            nux = max(nux, num)
print(nux)
0