結果
問題 | No.2372 既視感 |
ユーザー | random contestant |
提出日時 | 2023-07-07 21:40:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,057 bytes |
コンパイル時間 | 4,183 ms |
コンパイル使用メモリ | 267,368 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 17:26:44 |
合計ジャッジ時間 | 5,210 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 6 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 15 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 15 ms
5,376 KB |
testcase_28 | AC | 27 ms
5,376 KB |
ソースコード
// #define _GLIBCXX_DEBUG #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; #define rep(i,n) for (ll i = 0; i < (n); ++i) using vl = vector<ll>; using vvl = vector<vl>; using P = pair<ll,ll>; #define pb push_back #define int long long #define double long double #define INF (ll) 3e18 // Ctrl + Shift + B コンパイル // Ctrl + C 中断 // ./m 実行 signed main(){ int n, k, q; cin >> n >> k >> q; deque<string> deq; while(q--){ int t; cin >> t; if (t == 1){ string d; cin >> d; deq.push_back(d); } if (t == 2){ vector<string> t(6); vl d(6); rep(i, 6) cin >> t[i] >> d[i]; int solve = 0; int time = 0; rep(i, 6){ int find = 0; for(auto x : deq) if (x == t[i]) find = 1; if (find) time += min(d[i], k); else time += d[i]; if (time <= 60) solve++; } cout << solve << endl; rep(i, 6) deq.push_back(t[i]); } while(deq.size() > n) deq.pop_front(); } }