結果
問題 |
No.374 コイン
|
ユーザー |
![]() |
提出日時 | 2019-08-27 13:49:00 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 128 ms / 1,000 ms |
コード長 | 269 bytes |
コンパイル時間 | 2,210 ms |
コンパイル使用メモリ | 77,300 KB |
実行使用メモリ | 41,792 KB |
最終ジャッジ日時 | 2024-11-15 16:53:15 |
合計ジャッジ時間 | 6,633 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); StringBuilder sb = new StringBuilder(); long a = sc.nextLong(); long b = sc.nextLong(); System.out.println((a < b) ? "K" : "S"); } }