結果
| 問題 |
No.427 テレビ
|
| コンテスト | |
| ユーザー |
neko_the_shadow
|
| 提出日時 | 2016-10-02 22:39:33 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 139 bytes |
| コンパイル時間 | 199 ms |
| コンパイル使用メモリ | 5,376 KB |
| 実行使用メモリ | 16,000 KB |
| 最終ジャッジ日時 | 2024-12-21 15:04:45 |
| 合計ジャッジ時間 | 1,124 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 |
ソースコード
(define (f h w)
(if (> h w) "TATE" "YOKO"))
(define (MAIN)
(let ((h (read)) (w (read)))
(display (f h w))
(newline)))
(MAIN)
neko_the_shadow