結果

問題 No.1223 I hate Golf
ユーザー YoshimikiYoshimiki
提出日時 2020-09-19 19:54:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-06-23 18:15:42
合計ジャッジ時間 4,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,392 KB
testcase_01 AC 128 ms
54,108 KB
testcase_02 AC 129 ms
54,080 KB
testcase_03 WA -
testcase_04 AC 130 ms
54,308 KB
testcase_05 WA -
testcase_06 AC 130 ms
54,220 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 128 ms
54,084 KB
testcase_10 AC 129 ms
54,048 KB
testcase_11 AC 132 ms
54,088 KB
testcase_12 AC 131 ms
54,220 KB
testcase_13 AC 126 ms
54,088 KB
testcase_14 AC 128 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
	    Scanner stdIn = new Scanner(System.in);
	    int N = Math.abs(stdIn.nextInt());
	    int K = stdIn.nextInt();
	    int T = stdIn.nextInt();
	    
	    long maxDistance = K * T;
	    if(maxDistance < N){
	        System.out.println("No");
	    }else{
	        System.out.println("Yes");
	    }
	}
}
0