結果

問題 No.138 化石のバージョン
ユーザー RinRin
提出日時 2015-09-05 18:52:49
言語 Scheme
(Gauche-0.9.14)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 31 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-07-19 03:53:29
合計ジャッジ時間 1,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
15,872 KB
testcase_01 AC 21 ms
16,000 KB
testcase_02 AC 23 ms
15,872 KB
testcase_03 AC 23 ms
16,000 KB
testcase_04 AC 24 ms
15,872 KB
testcase_05 AC 22 ms
15,744 KB
testcase_06 AC 21 ms
15,872 KB
testcase_07 AC 21 ms
15,872 KB
testcase_08 AC 21 ms
16,000 KB
testcase_09 AC 21 ms
15,744 KB
testcase_10 AC 21 ms
15,872 KB
testcase_11 AC 20 ms
15,744 KB
testcase_12 WA -
testcase_13 AC 20 ms
15,744 KB
testcase_14 WA -
testcase_15 AC 21 ms
15,872 KB
testcase_16 AC 21 ms
15,744 KB
testcase_17 AC 21 ms
15,872 KB
testcase_18 AC 21 ms
16,000 KB
testcase_19 AC 20 ms
15,872 KB
testcase_20 AC 21 ms
15,744 KB
testcase_21 AC 22 ms
15,872 KB
testcase_22 AC 21 ms
15,872 KB
testcase_23 AC 21 ms
15,872 KB
testcase_24 AC 20 ms
15,872 KB
testcase_25 AC 21 ms
15,744 KB
testcase_26 AC 20 ms
15,744 KB
testcase_27 AC 20 ms
15,872 KB
testcase_28 AC 22 ms
16,000 KB
testcase_29 WA -
testcase_30 AC 20 ms
15,872 KB
testcase_31 WA -
testcase_32 AC 22 ms
15,872 KB
testcase_33 WA -
testcase_34 AC 21 ms
16,000 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (System.out.println x)
  (begin
    (display x)
    (newline)
  )
)

(define (ver2num x)
  (let loop(
            (i 0)
            (RetVal 0)
            (foo 0)
           )
    (if (= i (length x))
        (* RetVal (expt 10 (- 2 foo)))
        (if (string=? (list->string (list (list-ref x i))) ".")
            (loop (+ i 1) (* RetVal 1000 (expt 10 (- 2 foo))) 0)
            (loop (+ i 1) (+ (* RetVal 10) (string->number (list->string (list (list-ref x i))))) (+ foo 1))
        )
    )
  )
)

(let (
      (X (string->list (symbol->string (read))))
      (Y (string->list (symbol->string (read))))
     )
  (if (>= (ver2num X) (ver2num Y))
      (System.out.println "YES")
      (System.out.println "NO")
  )
)
0