結果
問題 | No.701 ひとりしりとり |
ユーザー | phspls |
提出日時 | 2020-04-05 19:06:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 1,650 ms |
コンパイル使用メモリ | 167,192 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-03 22:19:08 |
合計ジャッジ時間 | 3,673 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define llong long long int main() { int n; cin >> n; string aa = "abcdefghijklpmopqrstuvwxyz"; int i = 0; rep(a, 26) { rep(b, 26) { rep(c, 26) { rep(d, 26) { rep(e, 26) { if(i == n-1) break; cout << "a" << aa[a] << aa[b] << aa[c] << aa[d] << aa[e] << "a" << endl; i++; } } } } } cout << "an" << endl; }