結果
問題 | No.2647 [Cherry 6th Tune A] Wind |
ユーザー |
|
提出日時 | 2024-02-23 21:33:36 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 20 ms / 2,000 ms |
コード長 | 1,486 bytes |
コンパイル時間 | 4,204 ms |
コンパイル使用メモリ | 251,304 KB |
最終ジャッジ日時 | 2025-02-19 19:30:04 |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
ソースコード
#include <bits/stdc++.h>#include <atcoder/all>using namespace std;using str = string;using ll = long long;using ld = long double;using vll = vector<long long>;using vvll = vector<vector<long long>>;using vvvll = vector<vector<vector<long long>>>;using vvvvll = vector<vector<vector<vector<long long>>>>;using vpll = vector<pair<ll, ll>>;using vs = vector<string>;using vb = vector<bool>;using vvb = vector<vector<bool>>;using pll = pair<ll, ll>;#define REP(i, n) for (long long i = 0; i < n; i++)#define REP2(i, n, m) for (long long i = n; i < m; i++)#define REPv(v) for (auto itr = v.begin(); itr != v.end(); itr++)#define REPIN(v) \for (long long i = 0; i < (long long)v.size(); i++) cin >> v[i];#define been(vec) vec.begin(), vec.end()#define LIN \= []() { \long long x; \cin >> x; \return x; \}()#define SIN \= []() { \string x; \cin >> x; \return x; \}()#define SPNL(i, SIZE) (i + 1 == SIZE ? '\n' : ' ')ll gcd(ll x, ll y) { return (x % y) ? gcd(y, x % y) : y; }ll lcm(ll x, ll y) { return x / gcd(x, y) * y; }bool chmin(ll &a, const ll &b) { return (a > b && ((a = b) | 1)); }bool chmax(ll &a, const ll &b) { return (a < b && ((a = b) | 1)); }using namespace std;int main() {ll t LIN;REP(i, t) {ll d, a;cin >> d >> a;vector<unsigned long long> x(d);REPIN(x);REP(i, d) {cout << (x[i] / a) + ((x[i] * 10 / a) % 10 >= 5) << SPNL(i, d);}}}