結果

問題 No.2050 Speed
ユーザー マサマサ
提出日時 2022-09-16 18:35:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 41,692 KB
最終ジャッジ日時 2024-06-01 10:08:09
合計ジャッジ時間 5,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,116 KB
testcase_01 AC 127 ms
41,060 KB
testcase_02 AC 120 ms
40,668 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 130 ms
41,692 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 116 ms
40,016 KB
testcase_10 AC 119 ms
40,152 KB
testcase_11 WA -
testcase_12 AC 116 ms
40,248 KB
testcase_13 AC 129 ms
41,256 KB
testcase_14 AC 130 ms
41,224 KB
testcase_15 AC 131 ms
41,108 KB
testcase_16 AC 129 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt(); // 時速 A km
		int b = sc.nextInt(); // 秒速 B m
		
		// 時速何m の形に変える
		double aMeter = a * 1000;
		double bMeterPerHour = b * 60 * 60;
		
		if (aMeter > bMeterPerHour) {
			System.out.println("KoD");
			
		} else if (aMeter < bMeterPerHour) {
			System.out.println("blackyuki");
			
		} else {
			System.out.println("same");
		}
		
		sc.close();
	}
}
0