結果

問題 No.721 Die tertia (ディエ・テルツィア)
ユーザー ducktailducktail
提出日時 2024-02-10 23:32:06
言語 Haskell
(9.8.2)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 2,357 ms
コンパイル使用メモリ 165,760 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-02-10 23:32:11
合計ジャッジ時間 3,624 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 AC 2 ms
6,676 KB
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 AC 2 ms
6,676 KB
testcase_10 AC 2 ms
6,676 KB
testcase_11 AC 2 ms
6,676 KB
testcase_12 AC 2 ms
6,676 KB
testcase_13 AC 2 ms
6,676 KB
testcase_14 AC 2 ms
6,676 KB
testcase_15 AC 2 ms
6,676 KB
testcase_16 AC 2 ms
6,676 KB
testcase_17 AC 2 ms
6,676 KB
testcase_18 AC 2 ms
6,676 KB
testcase_19 AC 2 ms
6,676 KB
testcase_20 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.List.Split (splitOn)
import Text.Printf

main :: IO ()
main = solve <$> map read <$> splitOn "/" <$> getLine >>= printDate

solve :: [Int] -> (Int, Int, Int)
solve [y, m, d] = correct (y, m, d + 2)

printDate (y, m, d) = printf "%d/%02d/%02d\n" y m d

isLeap y = y `mod` 400 == 0 || y `mod` 100 /= 0 && y `mod` 4 == 0

lastDay :: Int -> Int -> Int
lastDay _ 1 = 31
lastDay y 2 = if isLeap y then 29 else 28
lastDay _ 3 = 31
lastDay _ 4 = 30
lastDay _ 5 = 31
lastDay _ 6 = 30
lastDay _ 7 = 31
lastDay _ 8 = 31
lastDay _ 9 = 30
lastDay _ 10 = 31
lastDay _ 11 = 30
lastDay _ _ = 31

correct :: (Int, Int, Int) -> (Int, Int, Int)
correct (y, m, d)
  | m == 13 = (y + 1, 1, d)
  | ld < d = correct (y, m + 1, d - ld)
  | otherwise = (y, m, d)
  where
    ld = lastDay y m
0