結果
問題 | No.311 z in FizzBuzzString |
ユーザー | hum_op |
提出日時 | 2016-02-12 21:37:06 |
言語 | F# (F# 4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 305 bytes |
コンパイル時間 | 6,843 ms |
コンパイル使用メモリ | 194,068 KB |
実行使用メモリ | 37,504 KB |
最終ジャッジ日時 | 2024-09-24 21:33:48 |
合計ジャッジ時間 | 10,818 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 307 ms
35,836 KB |
testcase_01 | AC | 310 ms
35,964 KB |
testcase_02 | AC | 315 ms
35,840 KB |
testcase_03 | AC | 311 ms
35,976 KB |
testcase_04 | AC | 312 ms
36,092 KB |
testcase_05 | AC | 307 ms
35,844 KB |
testcase_06 | AC | 311 ms
35,464 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (226 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/
ソースコード
open System [<EntryPoint>] let main args = let s = Console.ReadLine().Split(' '); let N = Int32.Parse(s.[0]) let mutable z = 0 for i = 1 to N do if i % 5 = 0 then z <- z + 2 if i % 3 = 0 then z <- z + 2 done printfn "%d" z 0