結果
問題 | No.381 名声値を稼ごう Extra |
ユーザー | Leonardone |
提出日時 | 2016-06-26 01:04:42 |
言語 | Haskell (9.8.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 213 bytes |
コンパイル時間 | 4,651 ms |
コンパイル使用メモリ | 169,472 KB |
実行使用メモリ | 88,704 KB |
最終ジャッジ日時 | 2024-10-11 23:25:00 |
合計ジャッジ時間 | 14,331 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
88,704 KB |
testcase_01 | TLE | - |
コンパイルメッセージ
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
ソースコード
-- yukicoder My Practice -- author: Leonardone @ NEETSDKASU main = print . solve . read =<< getLine solve n = ans `mod` 1004535809 where f 0 a = a f x a = f (x `div` 2) (a - x) ans = f (n `div` 2) n