結果

問題 No.2050 Speed
ユーザー マサマサ
提出日時 2022-09-16 18:35:51
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 2,179 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 54,312 KB
最終ジャッジ日時 2024-12-21 15:31:58
合計ジャッジ時間 5,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,248 KB
testcase_01 AC 126 ms
41,296 KB
testcase_02 AC 125 ms
41,044 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 128 ms
41,348 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 132 ms
41,404 KB
testcase_10 AC 128 ms
40,136 KB
testcase_11 WA -
testcase_12 AC 116 ms
41,432 KB
testcase_13 AC 125 ms
41,168 KB
testcase_14 AC 125 ms
41,288 KB
testcase_15 AC 109 ms
41,356 KB
testcase_16 AC 129 ms
41,068 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