結果
問題 | No.296 n度寝 |
ユーザー | Itomi-Sayaka |
提出日時 | 2019-07-31 13:38:06 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 341 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 177,664 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-05 06:27:48 |
合計ジャッジ時間 | 2,630 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 1 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
main :: IO () main = interact $ unlines . map show . solve . map (read :: String -> Int) . words solve :: [Int] -> [Int] solve (n:h:m:t:_) = [if (m + sleepMinutes) > 60 then (h + sleepHours) `mod` 24 + 1 else (h + sleepHours) `mod` 24] ++ [(m + sleepMinutes) `mod` 60] where (sleepHours , sleepMinutes) = divMod ((n - 1) * t) 60