結果
問題 |
No.2650 [Cherry 6th Tune *] セイジャク
|
ユーザー |
![]() |
提出日時 | 2024-02-23 22:30:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 231 bytes |
コンパイル時間 | 330 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 98,408 KB |
最終ジャッジ日時 | 2024-09-29 07:28:47 |
合計ジャッジ時間 | 7,790 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 8 WA * 6 TLE * 1 -- * 16 |
ソースコード
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): for j in reversed(range(t)): if q[j][0]<=x[i]<=q[j][1]: print(j+1) break