結果
| 問題 | No.1223 I hate Golf |
| コンテスト | |
| ユーザー |
kokatsu
|
| 提出日時 | 2022-11-26 23:16:09 |
| 言語 | D (dmd 2.112.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 124 bytes |
| 記録 | |
| コンパイル時間 | 1,692 ms |
| コンパイル使用メモリ | 187,240 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-06 22:22:39 |
| 合計ジャッジ時間 | 2,316 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 WA * 1 |
コンパイルメッセージ
/home/linuxbrew/.linuxbrew/opt/dmd/include/dlang/dmd/core/checkedint.d(814): Warning: cannot inline function `core.checkedint.mulu!().mulu`
ulong mulu()(ulong x, uint y, ref bool overflow)
^
ソースコード
import std;
void main() {
long N, K, T;
readf("%d %d %d\n", N, K, T);
writeln(N.abs < K * T ? "Yes" : "No");
}
kokatsu