結果

問題 No.5015 Escape from Labyrinth
ユーザー FplusFplusF
提出日時 2023-04-15 12:01:12
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 2,156 ms
コンパイル使用メモリ 196,136 KB
実行使用メモリ 4,500 KB
スコア 0
最終ジャッジ日時 2023-04-15 12:01:21
合計ジャッジ時間 7,142 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 100
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (long long i=0;i<(long long)(n);i++)
#define all(v) v.begin(),v.end()
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
const ll INF=(1ll<<60);
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n,d,h;
    cin >> n >> d >> h;
    while(h--){
        cout << "S" << endl;
    }
}
0