結果

問題 No.969 じゃんけん
コンテスト
ユーザー tanson
提出日時 2025-12-17 00:02:56
言語 Standard ML
(MLton 20210117)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 327 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,585 ms
コンパイル使用メモリ 689,664 KB
実行使用メモリ 7,848 KB
最終ジャッジ日時 2025-12-17 00:03:02
合計ジャッジ時間 3,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

fun readInt () =
    valOf (TextIO.scanStream (Int.scan StringCvt.DEC) TextIO.stdIn)


val () =
    let
        val x = readInt ()

        val ans = if x = 0 then "Yes"
                  else if x = 4 then "Yes"
                  else if x = 10 then "Yes"
                  else "No"
    in
        print (ans ^ "\n")
    end
0