結果

問題 No.207 世界のなんとか
ユーザー regeregeregerege
提出日時 2015-09-04 00:24:56
言語 F#
(F# 4.0)
結果
AC  
実行時間 365 ms / 5,000 ms
コード長 327 bytes
コンパイル時間 9,066 ms
コンパイル使用メモリ 192,904 KB
実行使用メモリ 35,220 KB
最終ジャッジ日時 2024-10-09 10:31:13
合計ジャッジ時間 17,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 347 ms
34,212 KB
testcase_01 AC 353 ms
34,848 KB
testcase_02 AC 349 ms
35,220 KB
testcase_03 AC 352 ms
34,968 KB
testcase_04 AC 350 ms
34,836 KB
testcase_05 AC 350 ms
34,248 KB
testcase_06 AC 350 ms
34,848 KB
testcase_07 AC 348 ms
35,092 KB
testcase_08 AC 352 ms
34,844 KB
testcase_09 AC 356 ms
34,844 KB
testcase_10 AC 362 ms
35,100 KB
testcase_11 AC 365 ms
34,304 KB
testcase_12 AC 351 ms
34,964 KB
testcase_13 AC 354 ms
34,964 KB
testcase_14 AC 350 ms
34,100 KB
testcase_15 AC 349 ms
34,964 KB
testcase_16 AC 355 ms
35,068 KB
testcase_17 AC 354 ms
33,888 KB
testcase_18 AC 349 ms
34,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (240 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 args = stdin.ReadLine().Split(' ')
    let a = int args.[0]
    let b = int args.[1]
    let f n =
        Seq.unfold (fun a -> Some (a,a/10)) n
        |> Seq.takeWhile((<=)3)
        |> Seq.exists(fun i -> i % 10 = 3)
        || n % 3 = 0
    [a..b]
    |> Seq.filter f
    |> Seq.sort
    |> Seq.iter (printfn "%d")
0