結果
問題 | No.1764 Square |
ユーザー | karinohito |
提出日時 | 2021-12-10 14:56:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 591 bytes |
コンパイル時間 | 1,623 ms |
コンパイル使用メモリ | 172,984 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 08:41:31 |
合計ジャッジ時間 | 2,857 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define all(A) A.begin(),A.end() using vll = vector<ll>; #define rep(i, n) for (long long i = 0; i < (long long)(n); i++) using Graph = vector<vector<ll>>; int main() { vector<deque<char>> D(4); D[0].push_back('A'); D[0].push_back('E'); D[1].push_back('B'); D[2].push_back('C'); D[3].push_back('D'); ll K; cin>>K; rep(i,K){ char C=D[i].front(); D[i].pop_front(); D[(i+1)%4].push_back(C); } rep(i,4){ while(!D[i].empty()){ char C=D[i].front(); D[i].pop_front(); cout<<C; } cout<<endl; } }