結果

問題 No.2887 Minahoshi (Easy)
ユーザー HIcoderHIcoder
提出日時 2024-10-09 21:08:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 509 bytes
コンパイル時間 1,281 ms
コンパイル使用メモリ 116,884 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-09 21:10:28
合計ジャッジ時間 26,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 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 3 ms
5,248 KB
testcase_08 AC 5 ms
5,248 KB
testcase_09 TLE -
testcase_10 AC 392 ms
5,248 KB
testcase_11 TLE -
testcase_12 AC 288 ms
5,248 KB
testcase_13 AC 236 ms
5,248 KB
testcase_14 AC 1,086 ms
5,248 KB
testcase_15 AC 16 ms
5,248 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,800 ms
5,248 KB
testcase_19 AC 3 ms
5,248 KB
testcase_20 AC 455 ms
5,248 KB
testcase_21 AC 1,158 ms
5,248 KB
testcase_22 AC 38 ms
5,248 KB
testcase_23 AC 1,485 ms
5,248 KB
testcase_24 AC 1,813 ms
5,248 KB
testcase_25 AC 1,368 ms
5,248 KB
testcase_26 AC 62 ms
5,248 KB
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,int> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int main(){
    int N;
    cin>>N;
    string S;
    for(int i=0;i<N;i++){
        S=S+'a';
    }
    cout<<S<<endl;
}
0