結果
問題 |
No.3085 Easy Problems
|
ユーザー |
|
提出日時 | 2025-04-06 14:43:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 241 bytes |
コンパイル時間 | 273 ms |
コンパイル使用メモリ | 12,032 KB |
実行使用メモリ | 84,004 KB |
最終ジャッジ日時 | 2025-04-06 14:43:12 |
合計ジャッジ時間 | 5,923 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 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)