結果
問題 | No.600 かい文回 |
ユーザー | eto_nagisa |
提出日時 | 2017-11-25 00:01:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,738 bytes |
コンパイル時間 | 1,384 ms |
コンパイル使用メモリ | 161,128 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-05 11:47:09 |
合計ジャッジ時間 | 3,422 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include "bits/stdc++.h" #define REP(i,n) for(ll i=0;i<ll(n);++i) #define RREP(i,n) for(ll i=ll(n)-1;i>=0;--i) #define FOR(i,m,n) for(ll i=m;i<ll(n);++i) #define RFOR(i,m,n) for(ll i=ll(n)-1;i>=ll(m);--i) #define ALL(v) (v).begin(),(v).end() #define UNIQUE(v) v.erase(unique(ALL(v)),v.end()); #define DUMP(v) REP(aa, (v).size()) { cout << v[aa]; if (aa != v.size() - 1)cout << " "; else cout << endl; } #define INF 1000000001ll #define MOD 1000000007ll #define EPS 1e-9 const int dx[8] = { 1,1,0,-1,-1,-1,0,1 }; const int dy[8] = { 0,1,1,1,0,-1,-1,-1 }; using namespace std; typedef long long ll; typedef vector<int> vi; typedef vector<ll> vl; typedef vector<vi> vvi; typedef vector<vl> vvl; typedef pair<int, int> pii; typedef pair<ll, ll> pll; ll max(ll a, int b) { return max(a, ll(b)); } ll max(int a, ll b) { return max(ll(a), b); } ll min(ll a, int b) { return min(a, ll(b)); } ll min(int a, ll b) { return min(ll(a), b); } ///(´・ω・`)(´・ω・`)(´・ω・`)(´・ω・`)(´・ω・`)(´・ω・`)/// int main() { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vi isprime(100000, 1); isprime[0] = 0; isprime[1] = 0; for (int i = 0; i < 100000; ++i) { if (isprime[i]) { for (int j = 2; j*i < 100000; ++j) { isprime[i*j] = false; } } } string ans; int cnt = 0; while (n > 1) { int val = n, t = 0; while (val % 2 == 0) { val /= 2; t++; } REP(i, t + 1)ans += 'a' + cnt; n = ((n - (int)pow(2, t)) / (int)pow(2, t)); cnt++; } if (n == 1) { int k = ans.size(); ans += 'a' + cnt; REP(i, k) { ans += ans[k - i - 1]; } } else { int k = ans.size(); REP(i, k) { if(ans[k-i-1]!=ans[k-1])ans += ans[k - i - 1]; } } cout << ans << endl; return 0; }