結果

問題 No.701 ひとりしりとり
ユーザー hiro71687khiro71687k
提出日時 2023-08-26 23:47:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 858 bytes
コンパイル時間 5,137 ms
コンパイル使用メモリ 270,576 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-12-26 03:36:17
合計ジャッジ時間 7,411 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 5 ms
5,248 KB
testcase_10 AC 30 ms
5,248 KB
testcase_11 AC 341 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=998244353;
ll inf=1009999999999999990;
int main(){
    ll n;
    cin >> n;
    map<string,ll>memo;
    memo["a"]++;
    cout << "a" << endl;
    for (ll i = 0; i < n-1; i++)
    {
        while (1)
        {
            string s="a";
            for (ll j = 0; j < 18; j++)
            {
                char c='a';
                c+=rand()%26;
                s.push_back(c);
            }
            if (i==n-2)
            {
                s.push_back('n');
            }else{
                s.push_back('a');
            }
            if (memo[s]==0)
            {
                memo[s]++;
                cout << s << endl;
                break;
            }
        }
    }
}
0