結果
問題 |
No.741 AscNumber(Easy)
|
ユーザー |
![]() |
提出日時 | 2018-10-13 23:45:51 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 441 ms / 2,000 ms |
コード長 | 163 bytes |
コンパイル時間 | 11,430 ms |
コンパイル使用メモリ | 198,400 KB |
実行使用メモリ | 95,360 KB |
最終ジャッジ日時 | 2024-10-12 18:15:00 |
合計ジャッジ時間 | 10,395 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 55 |
コンパイルメッセージ
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
ソースコード
import qualified Data.Vector.Unboxed as V main = do n <- readLn print $ V.last $ iterate (V.scanl1 (\x y -> (x+y)`mod`(10^9+7))) (V.replicate 10 (1::Int)) !! n