結果

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

ソースコード

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(){
    ll R,r;
    cin>>R>>r;
    if(R<r)cout<<"K"<<endl;
    else cout<<"S"<<endl;
}
0