結果
| 問題 |
No.185 和風
|
| コンテスト | |
| ユーザー |
kokoa1046
|
| 提出日時 | 2017-09-03 23:31:13 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 189 bytes |
| コンパイル時間 | 171 ms |
| コンパイル使用メモリ | 6,820 KB |
| 実行使用メモリ | 16,384 KB |
| 最終ジャッジ日時 | 2024-11-06 20:11:05 |
| 合計ジャッジ時間 | 968 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 2 |
ソースコード
(define d (read)) (define (readn n) (if (= n 0) '() (cons (let ( (a (read)) (b (read))) (- b a) ) (readn (- n 1)) ) )) (let ( (l (readn d)))(if (apply = l) (print (car l)) (print "-1")))
kokoa1046