結果

問題 No.272 NOT回路
ユーザー vain0vain0
提出日時 2015-08-28 22:25:26
言語 F#
(F# 4.0)
結果
AC  
実行時間 318 ms / 1,000 ms
コード長 219 bytes
コンパイル時間 13,521 ms
コンパイル使用メモリ 201,740 KB
実行使用メモリ 35,744 KB
最終ジャッジ日時 2024-07-18 15:11:33
合計ジャッジ時間 15,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 310 ms
35,620 KB
testcase_01 AC 313 ms
35,716 KB
testcase_02 AC 310 ms
35,628 KB
testcase_03 AC 309 ms
35,500 KB
testcase_04 AC 312 ms
35,240 KB
testcase_05 AC 306 ms
34,980 KB
testcase_06 AC 312 ms
35,744 KB
testcase_07 AC 308 ms
35,332 KB
testcase_08 AC 301 ms
35,116 KB
testcase_09 AC 318 ms
35,624 KB
testcase_10 AC 307 ms
35,088 KB
testcase_11 AC 305 ms
35,236 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (359 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(8,19): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '2' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System

[<EntryPoint>]
let main argv =
    let n = Int32.Parse <| Console.ReadLine()
    do
        printfn "%d" (
            match n with
            | 0 -> 1
            | 1 -> 0
            )

    //exit
    0
0