結果
| 問題 |
No.374 コイン
|
| コンテスト | |
| ユーザー |
sigma425
|
| 提出日時 | 2016-06-06 00:00:15 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 122 bytes |
| コンパイル時間 | 2,046 ms |
| コンパイル使用メモリ | 156,640 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-08 16:13:36 |
| 合計ジャッジ時間 | 2,183 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 WA * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
signed int a,b;
cin>>a>>b;
if(a>=b) puts("S");
else puts("K");
}
sigma425