結果
問題 | No.2359 A in S ? |
ユーザー | 遭難者 |
提出日時 | 2023-05-23 13:21:27 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 825 bytes |
コンパイル時間 | 4,555 ms |
コンパイル使用メモリ | 307,068 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-09 20:34:22 |
合計ジャッジ時間 | 13,678 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 47 ms
5,376 KB |
testcase_06 | TLE | - |
testcase_07 | AC | 46 ms
5,376 KB |
testcase_08 | AC | 79 ms
5,376 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define rep(i, n) for (int i = 0; i < n; i++) #define ALL(a) a.begin(), a.end() #define ll int #define pii pair<int, int> #define pil pair<int, ll> #define pli pair<ll, int> #define vc vector using namespace std; constexpr int inf = 1e5 + 1; int a[inf]; void solve() { int n, m; cin >> n >> m; rep(k, n) { int l, r, x, y; cin >> l >> r >> x >> y; l = (l - y + x - 1) / x * x + y; r = (r - y + x) / x * x + y; while (l < r) { a[l]++; l += x; } } for (int i = 0, x; i < m; i++) { cin >> x; cout << a[x] << '\n'; } } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(13); solve(); return 0; }