結果
| 問題 | No.741 AscNumber(Easy) |
| コンテスト | |
| ユーザー |
torikumino
|
| 提出日時 | 2018-10-13 23:45:51 |
| 言語 | Haskell (9.14.1) |
| 結果 |
AC
|
| 実行時間 | 288 ms / 2,000 ms |
| コード長 | 163 bytes |
| 記録 | |
| コンパイル時間 | 7,785 ms |
| コンパイル使用メモリ | 230,044 KB |
| 実行使用メモリ | 97,280 KB |
| 最終ジャッジ日時 | 2026-04-29 21:31:43 |
| 合計ジャッジ時間 | 9,163 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 55 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/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
torikumino