結果
問題 | No.756 チャンパーノウン定数 (1) |
ユーザー | chike_plus |
提出日時 | 2019-03-28 16:27:00 |
言語 | F# (F# 4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 410 bytes |
コンパイル時間 | 16,771 ms |
コンパイル使用メモリ | 186,740 KB |
実行使用メモリ | 31,456 KB |
最終ジャッジ日時 | 2024-10-13 05:37:56 |
合計ジャッジ時間 | 18,956 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
28,924 KB |
testcase_01 | AC | 52 ms
29,056 KB |
testcase_02 | AC | 52 ms
29,312 KB |
testcase_03 | AC | 51 ms
29,176 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 53 ms
29,440 KB |
testcase_09 | AC | 51 ms
29,312 KB |
testcase_10 | WA | - |
testcase_11 | AC | 52 ms
29,176 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 51 ms
29,056 KB |
testcase_22 | WA | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (317 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/
ソースコード
let ``No.756 チャンパーノウン定数 (1)``() = let rec loop n i = match i with | 1 -> n % 10 | 2 -> if n < 10 then loop (n+1) (i-1) else n % 10 | 3 -> if n = 100 then 1 else loop (n+1) (i-1) | _ -> loop (n+1) (i-1) stdin.ReadLine()|>int |> loop 1 |> stdout.WriteLine () ``No.756 チャンパーノウン定数 (1)``()