結果

問題 No.480 合計
コンテスト
ユーザー mlpj56d
提出日時 2017-06-18 23:18:10
言語 JavaScript
(node v26.7.0 + ACL)
コンパイル:
true
実行:
node _filename_ ONLINE_JUDGE
結果
AC  
実行時間 37 ms / 2,000 ms
+ 564µs
コード長 274 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 3 ms
コンパイル使用メモリ 9,972 KB
実行使用メモリ 49,664 KB
最終ジャッジ日時 2026-09-15 05:38:30
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

function Main (input) {
    var n = parseInt(input) ;
    var s = 0;
    if ( n % 2 == 0) {
        s = (1 + n) * n / 2
        console.log(s)
} else {
    s = (1 + n) * (n - 1) / 2 + (1 + n) / 2
    console.log(s)
}
}
Main(require("fs").readFileSync("/dev/stdin", "utf8"));
0