結果

問題 No.374 コイン
ユーザー Yazaten
提出日時 2018-07-03 23:38:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 165,832 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-01 02:04:19
合計ジャッジ時間 2,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define all(a) (a).begin(),(a).end()
#define pb emplace_back
#define INF (1e9+1)

int main(){
    int R,r;
    cin>>R>>r;
    if(R<r)cout<<"K"<<endl;
    else cout<<"S"<<endl;
}
0