結果

問題 No.374 コイン
ユーザー vjudge1
提出日時 2025-04-18 16:08:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 340 bytes
コンパイル時間 1,176 ms
コンパイル使用メモリ 158,600 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-04-18 16:08:32
合計ジャッジ時間 2,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
using namespace std;
int const N=1e6+5;
int n,m,sum,cnt,t,ans,a,b;
signed main()
{
//	freopen("coin.in","r",stdin);
//	freopen("coin.out","r",stdout);
	ios::sync_with_stdio(0);
	cin.tie(0),cout.tie(0);
    cin>>a>>b;
    if(a<b)
    {
    	cout<<"K";
    	return 0;
	}
	cout<<"S";
	return 0;
}
0