結果

問題 No.1764 Square
ユーザー se1ka2se1ka2
提出日時 2021-11-26 22:22:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 18:06:34
合計ジャッジ時間 1,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
using namespace std;

int main()
{
    int k;
    cin >> k;
    queue<int> que[4];
    for(int i = 0; i < 5; i++) que[i % 4].push(i);
    for(int i = 0; i < k; i++){
        que[(i + 1) % 4].push(que[i % 4].front());
        que[i % 4].pop();
    }
    for(int i = 0; i < 4; i++){
        while(que[i].size()){
            cout << char('A' + que[i].front());
            que[i].pop();
        }
        cout << endl;
    }
}
0