結果

問題 No.480 合計
ユーザー HeyClosureHeyClosure
提出日時 2019-07-19 01:25:09
言語 Clojure(Beta)
(1.11.2)
結果
AC  
実行時間 1,777 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 69,332 KB
最終ジャッジ日時 2024-06-25 16:35:29
合計ジャッジ時間 40,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,629 ms
69,008 KB
testcase_01 AC 1,644 ms
69,064 KB
testcase_02 AC 1,631 ms
69,160 KB
testcase_03 AC 1,631 ms
69,260 KB
testcase_04 AC 1,640 ms
69,300 KB
testcase_05 AC 1,639 ms
69,124 KB
testcase_06 AC 1,641 ms
69,148 KB
testcase_07 AC 1,639 ms
69,132 KB
testcase_08 AC 1,642 ms
69,320 KB
testcase_09 AC 1,628 ms
69,332 KB
testcase_10 AC 1,652 ms
69,144 KB
testcase_11 AC 1,620 ms
68,896 KB
testcase_12 AC 1,777 ms
69,188 KB
testcase_13 AC 1,630 ms
69,032 KB
testcase_14 AC 1,631 ms
69,292 KB
testcase_15 AC 1,628 ms
68,992 KB
testcase_16 AC 1,635 ms
69,004 KB
testcase_17 AC 1,622 ms
69,332 KB
testcase_18 AC 1,634 ms
69,244 KB
testcase_19 AC 1,640 ms
69,304 KB
testcase_20 AC 1,629 ms
69,212 KB
testcase_21 AC 1,640 ms
69,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

(require '[clojure.edn :as edn])

(def n (read-line))
(def to (edn/read-string n))

(print (reduce +  (range 1 (+ 1 to))))
0