結果
問題 | No.138 化石のバージョン |
ユーザー | Rin |
提出日時 | 2015-09-05 20:00:54 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,042 bytes |
コンパイル時間 | 32 ms |
コンパイル使用メモリ | 5,248 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-07-19 03:54:04 |
合計ジャッジ時間 | 1,772 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
16,000 KB |
testcase_01 | AC | 23 ms
16,000 KB |
testcase_02 | WA | - |
testcase_03 | AC | 25 ms
15,872 KB |
testcase_04 | AC | 25 ms
15,872 KB |
testcase_05 | AC | 22 ms
15,872 KB |
testcase_06 | AC | 23 ms
16,000 KB |
testcase_07 | AC | 21 ms
16,000 KB |
testcase_08 | AC | 23 ms
16,000 KB |
testcase_09 | AC | 23 ms
15,872 KB |
testcase_10 | AC | 23 ms
15,872 KB |
testcase_11 | AC | 22 ms
16,000 KB |
testcase_12 | AC | 22 ms
15,872 KB |
testcase_13 | AC | 22 ms
15,872 KB |
testcase_14 | AC | 23 ms
15,872 KB |
testcase_15 | WA | - |
testcase_16 | AC | 22 ms
15,872 KB |
testcase_17 | AC | 22 ms
15,872 KB |
testcase_18 | AC | 23 ms
16,000 KB |
testcase_19 | AC | 22 ms
15,872 KB |
testcase_20 | AC | 22 ms
15,872 KB |
testcase_21 | AC | 21 ms
16,000 KB |
testcase_22 | AC | 21 ms
15,872 KB |
testcase_23 | AC | 21 ms
15,872 KB |
testcase_24 | AC | 23 ms
16,000 KB |
testcase_25 | AC | 23 ms
15,872 KB |
testcase_26 | AC | 22 ms
16,000 KB |
testcase_27 | AC | 23 ms
16,000 KB |
testcase_28 | AC | 22 ms
15,872 KB |
testcase_29 | AC | 22 ms
15,872 KB |
testcase_30 | AC | 22 ms
16,000 KB |
testcase_31 | AC | 21 ms
15,872 KB |
testcase_32 | AC | 22 ms
16,000 KB |
testcase_33 | AC | 22 ms
15,872 KB |
testcase_34 | AC | 21 ms
15,872 KB |
testcase_35 | AC | 21 ms
15,872 KB |
ソースコード
(define (System.out.println x) (begin (display x) (newline) ) ) (define (ver2num x) (let loop( (i 0) (foo 0) (bar '()) ) (if (= i (length x)) (if (< foo 10) (string->number (apply string-append (reverse (cons (string-append "0" (number->string foo)) bar)))) (string->number (apply string-append (reverse (cons (number->string foo) bar)))) ) (if (string=? (list->string (list (list-ref x i))) ".") (if (< foo 10) (loop (+ i 1) 0 (cons (string-append "0" (number->string foo)) bar)) (loop (+ i 1) 0 (cons (number->string foo) bar)) ) (loop (+ i 1) (+ (* foo 10) (string->number (list->string (list (list-ref x i))))) bar) ) ) ) ) (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") ) )