結果
問題 | No.1764 Square |
ユーザー | ぷら |
提出日時 | 2021-12-06 19:00:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 567 bytes |
コンパイル時間 | 2,162 ms |
コンパイル使用メモリ | 206,332 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-07 09:30:11 |
合計ジャッジ時間 | 2,743 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 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 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { vector<deque<int>>tmp(4); tmp[0].push_back(0); tmp[0].push_back(4); tmp[1].push_back(1); tmp[2].push_back(2); tmp[3].push_back(3); int K; cin >> K; for(int i = 0; i < K; i++) { int a = tmp[i%4].front(); tmp[i%4].pop_front(); tmp[(i+1)%4].push_back(a); } for(int i = 0; i < 4; i++) { while (!tmp[i].empty()) { cout << (char)((tmp[i].front()+'A')); tmp[i].pop_front(); } cout << endl; } }