結果

問題 No.374 コイン
ユーザー tonyu0
提出日時 2020-05-17 18:41:03
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 232 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 92,552 KB
最終ジャッジ日時 2025-01-10 12:44:42
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>
#include <algorithm>
#include <cmath>
using namespace std;
using ll = long long;

ll a, b;

int main()
{
  cin >> a >> b;
  cout << (a >= b ? 'S' : 'K') << endl;
  return 0;
}
0