結果

問題 No.374 コイン
ユーザー yansi819yansi819
提出日時 2024-05-20 09:09:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 62 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,624 KB
実行使用メモリ 53,448 KB
最終ジャッジ日時 2024-05-20 09:09:30
合計ジャッジ時間 2,896 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,696 KB
testcase_01 AC 35 ms
52,808 KB
testcase_02 AC 35 ms
52,572 KB
testcase_03 AC 34 ms
52,264 KB
testcase_04 AC 34 ms
52,524 KB
testcase_05 AC 35 ms
52,808 KB
testcase_06 AC 34 ms
52,616 KB
testcase_07 AC 35 ms
53,020 KB
testcase_08 AC 35 ms
52,436 KB
testcase_09 AC 37 ms
52,272 KB
testcase_10 AC 35 ms
53,012 KB
testcase_11 AC 32 ms
53,220 KB
testcase_12 AC 33 ms
52,196 KB
testcase_13 AC 32 ms
51,876 KB
testcase_14 AC 30 ms
52,072 KB
testcase_15 AC 31 ms
53,368 KB
testcase_16 AC 30 ms
52,484 KB
testcase_17 AC 31 ms
52,952 KB
testcase_18 AC 32 ms
52,932 KB
testcase_19 AC 32 ms
52,360 KB
testcase_20 AC 30 ms
52,472 KB
testcase_21 AC 32 ms
52,492 KB
testcase_22 AC 33 ms
52,288 KB
testcase_23 AC 32 ms
52,668 KB
testcase_24 AC 31 ms
52,080 KB
testcase_25 AC 33 ms
53,448 KB
testcase_26 AC 32 ms
52,636 KB
testcase_27 AC 32 ms
52,284 KB
testcase_28 AC 31 ms
53,296 KB
testcase_29 AC 31 ms
51,888 KB
testcase_30 AC 31 ms
52,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
print("K" if A < B else "S")
0