結果
問題 | No.381 名声値を稼ごう Extra |
ユーザー | Leonardone |
提出日時 | 2016-06-26 01:06:57 |
言語 | Haskell (9.8.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 5,024 ms |
コンパイル使用メモリ | 169,856 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-11 23:24:41 |
合計ジャッジ時間 | 14,494 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 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) `mod` 1004535809) ans = f (n `div` 2) n