結果

問題 No.1422 Social Distance in Train
ユーザー natoriusannatoriusan
提出日時 2023-07-30 15:49:51
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 84 bytes
コンパイル時間 6,940 ms
コンパイル使用メモリ 184,200 KB
実行使用メモリ 34,736 KB
最終ジャッジ日時 2024-10-09 11:03:30
合計ジャッジ時間 12,760 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,728 KB
testcase_01 AC 334 ms
34,604 KB
testcase_02 AC 334 ms
34,096 KB
testcase_03 AC 335 ms
34,732 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 338 ms
34,476 KB
testcase_07 WA -
testcase_08 AC 333 ms
33,960 KB
testcase_09 AC 339 ms
34,480 KB
testcase_10 WA -
testcase_11 AC 336 ms
33,704 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (247 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let n = stdin.ReadLine () |> int

if n % 2 = 0 then
    2
else
    1
|> printfn "%d"
0