結果
| 問題 | No.741 AscNumber(Easy) |
| コンテスト | |
| ユーザー |
torikumino
|
| 提出日時 | 2018-10-13 23:45:51 |
| 言語 | Haskell (9.14.1 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 276 ms / 2,000 ms |
| + 772µs | |
| コード長 | 163 bytes |
| 記録 | |
| コンパイル時間 | 4,304 ms |
| コンパイル使用メモリ | 233,404 KB |
| 実行使用メモリ | 97,408 KB |
| 最終ジャッジ日時 | 2026-09-15 00:28:46 |
| 合計ジャッジ時間 | 10,204 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_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