結果
| 問題 |
No.296 n度寝
|
| コンテスト | |
| ユーザー |
りあん
|
| 提出日時 | 2015-11-10 12:54:44 |
| 言語 | Scheme (Gauche-0.9.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 199 bytes |
| コンパイル時間 | 81 ms |
| コンパイル使用メモリ | 6,684 KB |
| 実行使用メモリ | 16,128 KB |
| 最終ジャッジ日時 | 2024-09-13 14:19:30 |
| 合計ジャッジ時間 | 1,092 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)
りあん