結果
問題 | No.647 明太子 |
ユーザー | Himatsubushin |
提出日時 | 2022-02-01 15:09:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 515 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-06-11 09:09:57 |
合計ジャッジ時間 | 16,479 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,256 KB |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | WA | - |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 31 ms
10,752 KB |
testcase_06 | AC | 31 ms
10,624 KB |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | AC | 31 ms
10,752 KB |
testcase_09 | AC | 69 ms
10,752 KB |
testcase_10 | AC | 113 ms
10,752 KB |
testcase_11 | AC | 48 ms
10,752 KB |
testcase_12 | AC | 94 ms
10,752 KB |
testcase_13 | AC | 188 ms
10,752 KB |
testcase_14 | AC | 1,975 ms
12,032 KB |
testcase_15 | AC | 271 ms
10,880 KB |
testcase_16 | AC | 90 ms
10,752 KB |
testcase_17 | AC | 2,364 ms
12,160 KB |
testcase_18 | AC | 2,619 ms
12,160 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | TLE | - |
testcase_23 | -- | - |
ソースコード
member = [] for _ in range(int(input())): a, b = map(int, input().split()) member.append([a, b]) item = [] for _ in range(int(input())): a, b = map(int, input().split()) item.append([a, b, 0]) max = 0 for [a, b] in member: for i in range(len(item)): x, y, z = item[i] if a >= x and b <= y: item[i] = [x, y, z + 1] if max < z + 1: max = z + 1 count = 0 for i in range(len(item)): x, y, z = item[i] if z == max: print(i + 1)