結果
| 問題 | No.3648 Overbooked Meeting Rooms |
| コンテスト | |
| ユーザー |
とある理系大学生の日常
|
| 提出日時 | 2026-07-20 11:46:30 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 177 bytes |
| 記録 | |
| コンパイル時間 | 296 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 20,860 KB |
| 最終ジャッジ日時 | 2026-08-28 20:54:14 |
| 合計ジャッジ時間 | 9,392 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 30 |
ソースコード
N,M=map(int,input().split()) A=list(map(int,input().split())) B=list(map(int,input().split())) ANS=0 for n in range(N): if B[A[n]-1]==0: ANS+=1 else: B[A[n]]-=1 peinr(ANS)
とある理系大学生の日常