結果
| 問題 |
No.1223 I hate Golf
|
| コンテスト | |
| ユーザー |
xRS43BofaUEZ5gc
|
| 提出日時 | 2021-03-03 09:51:56 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 142 ms / 2,000 ms |
| コード長 | 340 bytes |
| コンパイル時間 | 3,466 ms |
| コンパイル使用メモリ | 74,192 KB |
| 実行使用メモリ | 41,620 KB |
| 最終ジャッジ日時 | 2024-10-03 03:08:40 |
| 合計ジャッジ時間 | 6,334 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
long n = sc.nextLong();
long k = sc.nextLong();
long t = sc.nextLong();
if (n < 0) {n = -n;}
System.out.println(k * t >= n ? "Yes":"No");
}
}
xRS43BofaUEZ5gc