結果

問題 No.111 あばばばば
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-25 19:46:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 2,048 ms
コンパイル使用メモリ 74,368 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-10-04 09:05:24
合計ジャッジ時間 3,877 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,136 KB
testcase_01 AC 130 ms
41,356 KB
testcase_02 AC 113 ms
41,228 KB
testcase_03 AC 127 ms
41,256 KB
testcase_04 AC 127 ms
41,376 KB
testcase_05 AC 115 ms
41,164 KB
testcase_06 AC 124 ms
41,384 KB
testcase_07 AC 130 ms
41,360 KB
testcase_08 AC 129 ms
41,044 KB
testcase_09 AC 129 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long L = sc.nextLong();
    long a = (L + 1) / 2;
    long b = (L - 1) / 2;
    long ans = (a * (a - 1)) / 2 + (b * (b - 1)) / 2;
    System.out.println(ans);
  }
}
0