結果
問題 | No.564 背の順 |
ユーザー | kokoa1046 |
提出日時 | 2017-09-09 12:02:49 |
言語 | Scheme (Gauche-0.9.14) |
結果 |
WA
|
実行時間 | - |
コード長 | 344 bytes |
コンパイル時間 | 164 ms |
コンパイル使用メモリ | 5,376 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-04-24 23:50:40 |
合計ジャッジ時間 | 1,023 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
16,000 KB |
testcase_01 | AC | 26 ms
15,872 KB |
testcase_02 | AC | 25 ms
15,872 KB |
testcase_03 | WA | - |
testcase_04 | AC | 26 ms
15,872 KB |
testcase_05 | AC | 24 ms
15,872 KB |
testcase_06 | AC | 25 ms
16,128 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 25 ms
15,872 KB |
testcase_10 | AC | 31 ms
16,000 KB |
testcase_11 | AC | 25 ms
15,872 KB |
ソースコード
; Here your code ! ; Here your code ! (define (readn n) (if (= n 0) '() (cons (read) (readn (- n 1)) ) )) (define h(read)) (define n (read)) (define hs (readn (- n 1))) (define ans (+(count (cut < h <>) hs)1)) (display ans) (cond ((= ans 1) (print "st")) ((= ans 2) (print "nd")) ((= ans 3) (print "rd")) (else (print "th")) )