結果
問題 |
No.2650 [Cherry 6th Tune *] セイジャク
|
ユーザー |
![]() |
提出日時 | 2024-02-23 22:29:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 212 bytes |
コンパイル時間 | 353 ms |
コンパイル使用メモリ | 82,068 KB |
実行使用メモリ | 89,600 KB |
最終ジャッジ日時 | 2024-09-29 07:25:07 |
合計ジャッジ時間 | 5,333 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | TLE * 1 -- * 30 |
ソースコード
n,a=map(int,input().split()) x=list(map(int,input().split())) t=int(input()) q=[tuple(map(int,input().split())) for i in range(t)] for i in range(n): c=0 for j in range(t): c+=q[j][0]<=x[i]<=q[j][1] print(c)