結果
| 問題 | No.296 n度寝 |
| コンテスト | |
| ユーザー |
りあん
|
| 提出日時 | 2015-11-10 12:54:44 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 199 bytes |
| 記録 | |
| コンパイル時間 | 55 ms |
| コンパイル使用メモリ | 7,972 KB |
| 実行使用メモリ | 16,256 KB |
| 最終ジャッジ日時 | 2026-04-04 05:42:56 |
| 合計ジャッジ時間 | 1,209 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 16 |
ソースコード
(define n (- (read) 1)) (define h (read)) (define m (read)) (define t (read)) (define a (modulo (+ (* h 60) m (* t n)) 1440)) (display (quotient a 60)) (display " ") (display (modulo a 60)) (newline)
りあん