結果

問題 No.374 コイン
ユーザー bambam
提出日時 2019-08-27 13:46:50
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 74,008 KB
実行使用メモリ 56,116 KB
最終ジャッジ日時 2024-11-15 16:51:14
合計ジャッジ時間 7,908 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 WA * 3 RE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		int a = sc.nextInt();
		int b = sc.nextInt();
		System.out.println((a > b) ? "S" : "K");
	}
}
0