結果
問題 | No.1264 010 |
ユーザー | kaede2020 |
提出日時 | 2020-10-24 09:11:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 1,491 ms |
コンパイル使用メモリ | 166,920 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-21 14:58:03 |
合計ジャッジ時間 | 2,310 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //#include <atcoder/all> //using namespace atcoder; template <typename T> bool chmax(T &u, const T z) { if (u < z) {u = z; return true;} else return false; } template <typename T> bool chmin(T &u, const T z) { if (u > z) {u = z; return true;} else return false; } #define ll long long #define rep(i, n) for (ll i = 0; i < (ll)(n); i++) //#define endl "\n" typedef pair<ll, ll> P; //const ll INF = LLONG_MAX; //using mint = modint1000000007; //using mint = modint998244353; //const int MOD = 1000000007; ll gcd(ll x, ll y) { return y ? gcd(y, x % y) : x; } int main(){ int n; cin>>n; if(n==0)cout<<1<<endl; else if(n==1)cout<<010<<endl; else if(n==2)cout<<010010<<endl; else { cout<<01; rep(i,n)cout<<0; cout<<10<<endl; } return 0; }