結果

問題 No.701 ひとりしりとり
ユーザー naipianaipia
提出日時 2018-06-15 23:29:14
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 158,680 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-30 15:31:31
合計ジャッジ時間 2,563 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
    int n;
    string s="aaaaaaa";
    cin >> n;
    for(int i=1;i<n;i++){
        cout << s << endl;
        s[5]+=1;
        for(int j=5;j>1;j--){
            if(s[j]=='k') s[j]='a',s[j-1]+=1;
        }
    }
    s[6]='n';
    cout << s << endl;

    return 0;
}
0