結果

問題 No.278 連続する整数の和(2)
ユーザー aimyaimy
提出日時 2017-06-17 09:54:29
言語 Haskell
(9.8.2)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 4,895 ms
コンパイル使用メモリ 176,384 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-02 11:55:47
合計ジャッジ時間 4,787 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 47 ms
8,192 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 4 ms
5,504 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 46 ms
8,064 KB
testcase_09 AC 45 ms
8,064 KB
testcase_10 AC 57 ms
8,064 KB
testcase_11 AC 44 ms
7,936 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 38 ms
8,192 KB
testcase_14 AC 32 ms
8,192 KB
testcase_15 AC 34 ms
8,192 KB
testcase_16 AC 27 ms
8,064 KB
testcase_17 AC 46 ms
8,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

main = readLn >>= print . xsum

xsum :: Integer -> Integer
xsum n = foldr dsum 0 [1 .. floor (sqrt (fromIntegral d))]
 where
  dsum x acc = let (q,r) = divMod d x in if r/=0 then acc else if x==q then acc+x else acc+x+q
  d = gcd n (div (n*(n-1)) 2)
0