結果

問題 No.480 合計
ユーザー HeyClosureHeyClosure
提出日時 2019-07-19 01:25:09
言語 Clojure(Beta)
(1.11.2)
結果
AC  
実行時間 1,813 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 69,404 KB
最終ジャッジ日時 2024-11-13 22:37:07
合計ジャッジ時間 43,303 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,771 ms
67,916 KB
testcase_01 AC 1,741 ms
67,896 KB
testcase_02 AC 1,813 ms
69,392 KB
testcase_03 AC 1,803 ms
69,404 KB
testcase_04 AC 1,737 ms
67,764 KB
testcase_05 AC 1,730 ms
68,032 KB
testcase_06 AC 1,733 ms
68,044 KB
testcase_07 AC 1,735 ms
68,044 KB
testcase_08 AC 1,734 ms
67,972 KB
testcase_09 AC 1,737 ms
67,944 KB
testcase_10 AC 1,726 ms
67,792 KB
testcase_11 AC 1,726 ms
67,872 KB
testcase_12 AC 1,719 ms
68,048 KB
testcase_13 AC 1,715 ms
67,712 KB
testcase_14 AC 1,715 ms
67,940 KB
testcase_15 AC 1,738 ms
67,920 KB
testcase_16 AC 1,721 ms
67,776 KB
testcase_17 AC 1,721 ms
67,940 KB
testcase_18 AC 1,718 ms
67,908 KB
testcase_19 AC 1,721 ms
67,908 KB
testcase_20 AC 1,722 ms
67,804 KB
testcase_21 AC 1,729 ms
67,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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