結果
問題 | No.647 明太子 |
ユーザー | syunsuke |
提出日時 | 2018-10-07 20:40:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-10-12 14:17:13 |
合計ジャッジ時間 | 9,641 ms |
ジャッジサーバーID (参考情報) |
judge / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | AC | 25 ms
10,624 KB |
testcase_03 | AC | 26 ms
10,624 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 25 ms
10,752 KB |
testcase_07 | AC | 28 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 42 ms
10,752 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 369 ms
11,520 KB |
testcase_20 | AC | 432 ms
11,392 KB |
testcase_21 | AC | 159 ms
11,008 KB |
testcase_22 | RE | - |
testcase_23 | WA | - |
ソースコード
N=int(input()) A=[] B=[] for i in range(N): a,b=map(int,input().split()) A.append(a) B.append(b) M=int(input()) ans=[0 for i in range(M+1)] for j in range(M): X,Y=map(int,input().split()) for k in range(N): if X<=A[k] and Y>=B[k]: ans[j+1]+=1 m=ans.count(max(ans)) if max(ans)==0: print(0) else: for l in range(N+1): if ans[l]==max(ans): print(l)