結果
問題 | No.374 コイン |
ユーザー |
![]() |
提出日時 | 2016-06-04 22:25:50 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 197 bytes |
コンパイル時間 | 1,459 ms |
コンパイル使用メモリ | 156,640 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 22:33:03 |
合計ジャッジ時間 | 2,235 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS#include <bits/stdc++.h>using namespace std;#define int long longsigned main(){int A, B;cin >> A >> B;if (A < B) puts("K");else puts("S");return 0;}