結果
| 問題 | No.3648 Overbooked Meeting Rooms |
| コンテスト | |
| ユーザー |
とある理系大学生の日常
|
| 提出日時 | 2026-07-20 11:47:42 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 303 ms |
| コンパイル使用メモリ | 21,536 KB |
| 実行使用メモリ | 20,872 KB |
| 最終ジャッジ日時 | 2026-08-28 20:54:26 |
| 合計ジャッジ時間 | 9,316 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_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]-=1 peinr(ANS)
とある理系大学生の日常