結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | Konton7 |
提出日時 | 2020-03-06 00:56:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,408 bytes |
コンパイル時間 | 2,027 ms |
コンパイル使用メモリ | 203,668 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 02:30:07 |
合計ジャッジ時間 | 5,588 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using VI = vector<int>; using VL = vector<ll>; using PII = std::pair<int, int>; using PLL = std::pair<ll, ll>; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repr(i, n) for (int i = (int)(n)-1; i >= 0; i--) #define rep2(i, s, n) for (int i = (s); i < (int)(n); i++) #define allpt(v) (v).begin(), (v).end() #define allpt_r(v) (v).rbegin(), (v).rend() const int mod = 1e9 + 7; const string wsp = " "; const string tb = "\t"; const string rt = "\n"; template <typename T> void show1dvec(vector<T> v) { int n = v.size() - 1; rep(i, n) cout << v[i] << wsp; cout << v[n] << rt; return; } template <typename T> void show2dvec(vector<vector<T>> v) { int n = v.size(); rep(i, n) show1dvec(v[i]); } int mod6(string s) { int x = 0; rep(i, s.length()) { x *= 10; x += s[i] - '0'; x %= 6; } return x % 6; } int main() { #ifdef DEBUG cout << "DEBUG MODE" << endl; ifstream in("input.txt"); //for debug cin.rdbuf(in.rdbuf()); //for debug #endif int n; cin >> n; VI ans; rep(i, 100) ans.push_back(2); rep(i, n /100) ans.push_back(5); n %= 100; rep(i, 10) ans.push_back(10); rep(i, n /10) ans.push_back(7); n %= 10; rep(i, 1) ans.push_back(20); rep(i, n) ans.push_back(53); show1dvec(ans); return 0; }