結果

問題 No.796 well known
ユーザー 情報学生情報学生
提出日時 2019-08-30 11:31:17
言語 Haskell
(9.8.2)
結果
AC  
実行時間 17 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 5,292 ms
コンパイル使用メモリ 178,816 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-11-20 19:46:32
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 14 ms
10,624 KB
testcase_05 AC 14 ms
10,880 KB
testcase_06 AC 17 ms
11,904 KB
testcase_07 AC 6 ms
7,936 KB
testcase_08 AC 14 ms
11,008 KB
testcase_09 AC 10 ms
9,728 KB
testcase_10 AC 16 ms
11,904 KB
testcase_11 AC 4 ms
6,784 KB
testcase_12 AC 8 ms
9,344 KB
testcase_13 AC 13 ms
10,624 KB
testcase_14 AC 7 ms
8,576 KB
testcase_15 AC 9 ms
9,472 KB
testcase_16 AC 17 ms
11,904 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

ソースコード

diff #

main :: IO ()
main = do
    n <- readLn
    putStrLn $ unwords $ map show $ solve n

solve :: Int -> [Int]
solve n | n `mod` 3 == 0 = reverse $ 3 : 3 : replicate (n - 2) 1
        | n `mod` 3 == 1 = reverse $ 3 : 3 : 3 : replicate (n - 3) 1
        | otherwise      = reverse $ 3 : replicate (n - 1) 1
0