結果

問題 No.207 世界のなんとか
ユーザー hum_ophum_op
提出日時 2016-03-31 00:04:14
言語 F#
(F# 4.0)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 6,959 ms
コンパイル使用メモリ 185,840 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-10-09 10:50:32
合計ジャッジ時間 14,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
35,460 KB
testcase_01 AC 334 ms
35,628 KB
testcase_02 AC 333 ms
35,748 KB
testcase_03 AC 332 ms
35,460 KB
testcase_04 AC 336 ms
34,932 KB
testcase_05 AC 336 ms
35,716 KB
testcase_06 AC 329 ms
35,332 KB
testcase_07 AC 337 ms
35,720 KB
testcase_08 AC 337 ms
35,604 KB
testcase_09 AC 336 ms
35,836 KB
testcase_10 AC 338 ms
34,860 KB
testcase_11 AC 336 ms
35,588 KB
testcase_12 AC 337 ms
35,576 KB
testcase_13 AC 333 ms
35,840 KB
testcase_14 AC 332 ms
35,624 KB
testcase_15 AC 330 ms
35,716 KB
testcase_16 AC 336 ms
35,712 KB
testcase_17 AC 333 ms
35,188 KB
testcase_18 AC 56 ms
30,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (227 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 #

open System
open System.Text

let isThree n:int =
    let mutable num = n
    let mutable ret = 0
    while num > 0 && ret = 0 do
        if num % 10 = 3 then
            ret <- 1
        num <- num / 10
    ret
    
      
[<EntryPoint>]
let main args =    
    let IN = Console.ReadLine().Split(' ')
    let A, B = Int32.Parse(IN.[0]), Int32.Parse(IN.[1])
    
    for x = A to B do
        if x % 3 = 0 || isThree(x) = 1 then
            printfn "%d" x
    done
        
    0
0