結果

問題 No.374 コイン
ユーザー YamaKasaYamaKasa
提出日時 2018-09-19 03:22:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 1,000 ms
コード長 290 bytes
コンパイル時間 2,035 ms
コンパイル使用メモリ 74,164 KB
実行使用メモリ 41,684 KB
最終ジャッジ日時 2024-07-18 08:12:44
合計ジャッジ時間 6,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,296 KB
testcase_01 AC 108 ms
41,388 KB
testcase_02 AC 109 ms
41,140 KB
testcase_03 AC 106 ms
41,144 KB
testcase_04 AC 101 ms
41,496 KB
testcase_05 AC 108 ms
41,220 KB
testcase_06 AC 107 ms
41,364 KB
testcase_07 AC 99 ms
41,400 KB
testcase_08 AC 116 ms
41,464 KB
testcase_09 AC 115 ms
41,312 KB
testcase_10 AC 114 ms
40,340 KB
testcase_11 AC 108 ms
41,280 KB
testcase_12 AC 107 ms
41,376 KB
testcase_13 AC 101 ms
41,376 KB
testcase_14 AC 109 ms
41,528 KB
testcase_15 AC 115 ms
41,540 KB
testcase_16 AC 113 ms
41,484 KB
testcase_17 AC 110 ms
41,364 KB
testcase_18 AC 106 ms
41,632 KB
testcase_19 AC 106 ms
41,452 KB
testcase_20 AC 93 ms
41,280 KB
testcase_21 AC 99 ms
41,684 KB
testcase_22 AC 112 ms
41,368 KB
testcase_23 AC 109 ms
41,264 KB
testcase_24 AC 98 ms
41,196 KB
testcase_25 AC 112 ms
40,348 KB
testcase_26 AC 110 ms
41,632 KB
testcase_27 AC 99 ms
41,280 KB
testcase_28 AC 117 ms
41,360 KB
testcase_29 AC 116 ms
41,640 KB
testcase_30 AC 116 ms
41,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long A = scan.nextLong();
		long B = scan.nextLong();
		scan.close();
		if(A < B) {
			System.out.println("K");
		}else {
			System.out.println("S");
		}
	}
}
0