結果

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

ソースコード

diff #

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

void sol(){
	int a,b;
	cin>>a>>b;
	if(a<b) cout<<"K";
	else cout<<"S";
}
signed main(){
//	freopen(".in","r",stdin);
//	freopen(".out","w",stdout); 
	sol();
}
0