結果
問題 | No.499 7進数変換 |
ユーザー |
![]() |
提出日時 | 2019-08-25 08:30:32 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 249 bytes |
コンパイル時間 | 5,763 ms |
コンパイル使用メモリ | 173,440 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 17:10:20 |
合計ジャッジ時間 | 6,684 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
コンパイルメッセージ
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
ソースコード
importData.Listunfoldrmain::IO()main = readLn >>= putStrLn . concat . map show . reverse . fwheref::Int->Intf 0 = [0]f n = flip unfoldr n (\x -> if x == 0 then Nothing else Just (x `mod` 7, x `div` 7))