結果
問題 | No.2887 Minahoshi (Easy) |
ユーザー |
|
提出日時 | 2024-09-13 21:44:46 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 227 bytes |
コンパイル時間 | 1,739 ms |
コンパイル使用メモリ | 165,488 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-13 21:44:59 |
合計ジャッジ時間 | 3,173 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 27 |
ソースコード
#include<bits/stdc++.h>using namespace std;#define ll long long#define int llvoid solve(){int n;cin>>n;for(int a=0;a<n;a++){cout<<'a';}}signed main(){int t=1;// cin>>t;for(int a=0;a<t;a++){solve();}}