結果

問題 No.138 化石のバージョン
ユーザー Masahiro Hayashi
提出日時 2015-05-31 15:49:06
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 172 bytes
コンパイル時間 47 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2025-02-07 08:44:37
合計ジャッジ時間 2,549 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env gosh

(use gauche.version)

(define (main args)
  (let* ([A (read-line)]
         [B (read-line)])
      (print (if (version<=? B A) "YES" "NO"))
    )
  0)
0