結果

問題 No.2796 Small Matryoshka
ユーザー 6soukiti296soukiti29
提出日時 2024-07-14 00:14:11
言語 Nim
(2.0.2)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 512 bytes
コンパイル時間 6,254 ms
コンパイル使用メモリ 67,060 KB
実行使用メモリ 27,284 KB
最終ジャッジ日時 2024-07-14 00:14:22
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 39 ms
6,944 KB
testcase_06 AC 242 ms
18,520 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 188 ms
18,456 KB
testcase_09 AC 282 ms
27,284 KB
testcase_10 AC 293 ms
27,268 KB
testcase_11 AC 292 ms
27,228 KB
testcase_12 AC 121 ms
12,676 KB
testcase_13 AC 16 ms
6,944 KB
testcase_14 AC 105 ms
8,712 KB
testcase_15 AC 30 ms
6,940 KB
testcase_16 AC 52 ms
6,948 KB
testcase_17 AC 174 ms
12,648 KB
testcase_18 AC 211 ms
18,500 KB
testcase_19 AC 62 ms
6,940 KB
testcase_20 AC 87 ms
8,824 KB
testcase_21 AC 174 ms
12,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sequtils, strutils,algorithm
var
    N = stdin.readLine.parseInt
    r,R,cnt : int
    A = newSeq[array[0..1, int]](0)

for i in 1..N:
    var in1 = stdin.readLine.split.map(parseInt)
    (r, R) = (in1[0], in1[1])
    A.add([r, 1])
    A.add([R, -1])
A.add([1000000005, 0])
proc cmp1(x, y : array[2, int]): int =
    system.cmp(x[0], y[0])
var res = 0
sort(A, cmp1)

for i, a in A:
    if i + 1 == A.len:
        break
    cnt += a[1]
    if a[0] != A[i + 1][0]:
        res = max(cnt,res)

echo res - 1

0