結果

問題 No.374 コイン
ユーザー sima.tetteke
提出日時 2019-10-30 19:04:00
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 215 bytes
コンパイル時間 1,473 ms
コンパイル使用メモリ 157,520 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-14 21:55:29
合計ジャッジ時間 2,373 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long int ll;
ll N;


int main(){

    ll N, M; cin >> N >> M;

    if(N < M){
        cout << "K" << endl;
    }else{
        cout << "S" << endl;
    }

} 
0