結果

問題 No.374 コイン
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-05 09:19:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 476 bytes
コンパイル時間 3,540 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 37,100 KB
最終ジャッジ日時 2024-11-07 22:42:43
合計ジャッジ時間 6,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,592 KB
testcase_01 AC 52 ms
36,648 KB
testcase_02 AC 53 ms
36,968 KB
testcase_03 AC 52 ms
36,572 KB
testcase_04 AC 52 ms
37,020 KB
testcase_05 AC 53 ms
36,852 KB
testcase_06 AC 53 ms
36,904 KB
testcase_07 AC 52 ms
37,056 KB
testcase_08 AC 52 ms
36,924 KB
testcase_09 AC 54 ms
37,100 KB
testcase_10 AC 53 ms
36,792 KB
testcase_11 AC 54 ms
36,676 KB
testcase_12 AC 52 ms
36,948 KB
testcase_13 AC 51 ms
36,788 KB
testcase_14 AC 50 ms
36,912 KB
testcase_15 AC 53 ms
36,548 KB
testcase_16 AC 52 ms
36,984 KB
testcase_17 AC 52 ms
36,812 KB
testcase_18 AC 51 ms
36,656 KB
testcase_19 AC 51 ms
36,888 KB
testcase_20 AC 53 ms
36,676 KB
testcase_21 AC 54 ms
36,780 KB
testcase_22 AC 53 ms
36,760 KB
testcase_23 AC 52 ms
36,592 KB
testcase_24 AC 53 ms
36,648 KB
testcase_25 AC 52 ms
36,912 KB
testcase_26 AC 51 ms
36,724 KB
testcase_27 AC 54 ms
36,436 KB
testcase_28 AC 52 ms
36,884 KB
testcase_29 AC 51 ms
36,940 KB
testcase_30 AC 54 ms
37,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Exercise60{
  public static void main (String[] args) throws IOException{

    BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
    String str = new String(in.readLine());

    String[] strArray = str.split(" ");

    long a = Long.parseLong(strArray[0]);
    long b = Long.parseLong(strArray[1]);

    if (b > a){
      System.out.println("K");
    }else{
      System.out.println("S");
    }
  }
}
0