結果

問題 No.374 コイン
ユーザー bambambambam
提出日時 2019-08-27 13:49:00
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,288 KB
testcase_01 AC 119 ms
41,516 KB
testcase_02 AC 119 ms
41,532 KB
testcase_03 AC 118 ms
40,960 KB
testcase_04 AC 118 ms
41,360 KB
testcase_05 AC 119 ms
41,456 KB
testcase_06 AC 116 ms
41,508 KB
testcase_07 AC 119 ms
41,336 KB
testcase_08 AC 119 ms
41,444 KB
testcase_09 AC 107 ms
41,416 KB
testcase_10 AC 123 ms
41,776 KB
testcase_11 AC 122 ms
41,116 KB
testcase_12 AC 118 ms
41,208 KB
testcase_13 AC 123 ms
41,404 KB
testcase_14 AC 121 ms
41,576 KB
testcase_15 AC 122 ms
41,500 KB
testcase_16 AC 120 ms
41,256 KB
testcase_17 AC 120 ms
41,352 KB
testcase_18 AC 120 ms
41,192 KB
testcase_19 AC 121 ms
41,004 KB
testcase_20 AC 122 ms
41,792 KB
testcase_21 AC 107 ms
41,680 KB
testcase_22 AC 120 ms
41,248 KB
testcase_23 AC 128 ms
41,328 KB
testcase_24 AC 125 ms
41,580 KB
testcase_25 AC 119 ms
41,132 KB
testcase_26 AC 122 ms
41,384 KB
testcase_27 AC 121 ms
41,304 KB
testcase_28 AC 119 ms
41,232 KB
testcase_29 AC 120 ms
40,988 KB
testcase_30 AC 123 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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");
	}
}
0