結果

問題 No.1223 I hate Golf
コンテスト
ユーザー tanson
提出日時 2026-01-10 00:04:41
言語 Standard ML
(MLton 20210117)
結果
AC  
実行時間 12 ms / 2,000 ms
コード長 342 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 7,591 ms
コンパイル使用メモリ 708,360 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2026-01-10 00:04:50
合計ジャッジ時間 4,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

fun readLargeInt () =
    valOf (TextIO.scanStream (LargeInt.scan StringCvt.DEC) TextIO.stdIn)
              

val () =
    let
        val n = readLargeInt ()
        val k = readLargeInt ()
        val t = readLargeInt ()

        val ans = if abs n <= k * t then "Yes"
                  else "No"
    in
        print (ans ^ "\n")
    end
0