結果
問題 |
No.3085 Easy Problems
|
ユーザー |
|
提出日時 | 2025-04-06 14:44:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 249 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 84,388 KB |
最終ジャッジ日時 | 2025-04-06 14:44:55 |
合計ジャッジ時間 | 6,008 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | TLE * 1 -- * 30 |
ソースコード
N = int(input()) Que = [list(map(int,input().split())) for _ in range(N)] T = int(input()) Peo = [list(map(int,input().split())) for _ in range(T)] Cnt = 0 for s,t in Peo: Cnt = 0 for a,b in Que: if t!=b and s>=a: Cnt += 1 print(Cnt) print()