結果
問題 | No.1764 Square |
ユーザー | takabatake2911 |
提出日時 | 2021-12-30 23:19:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,028 bytes |
コンパイル時間 | 1,290 ms |
コンパイル使用メモリ | 161,372 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-07 01:41:32 |
合計ジャッジ時間 | 1,663 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> typedef long long ll; using namespace std; int main() { string s = "EABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCDEABCD"; int n; cin >> n; string t = s.substr((1000 - n / 4) % 5, 5); if (n % 4 == 0) { cout << t[1]; cout << t[0] << endl; cout << t[2] << endl; cout << t[3] << endl; cout << t[4] << endl; return 0; } if (n % 4 == 1) { cout << t[0] << endl; cout << t[2]; cout << t[1] << endl; cout << t[3] << endl; cout << t[4] << endl; return 0; } if (n % 4 == 2) { cout << t[0] << endl; cout << t[1] << endl; cout << t[3]; cout << t[2] << endl; cout << t[4] << endl; return 0; } if (n % 4 == 3) { cout << t[0] << endl; cout << t[1] << endl; cout << t[2] << endl; cout << t[4]; cout << t[3] << endl; return 0; } }