結果

問題 No.374 コイン
ユーザー 0w1
提出日時 2016-11-21 01:59:36
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 180 bytes
コンパイル時間 1,852 ms
コンパイル使用メモリ 168,308 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-27 09:23:43
合計ジャッジ時間 2,717 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

const string msg[] = { "K", "S" };

signed main(){
  unsigned int A, B; cin >> A >> B;
  cout << msg[ B <= A ] << endl;
  return 0;
}
0