結果

問題 No.276 連続する整数の和(1)
ユーザー takeya_okinotakeya_okino
提出日時 2019-09-22 14:01:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 260 bytes
コンパイル時間 1,767 ms
コンパイル使用メモリ 73,820 KB
実行使用メモリ 54,096 KB
最終ジャッジ日時 2024-09-19 03:34:35
合計ジャッジ時間 3,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,008 KB
testcase_01 AC 121 ms
54,096 KB
testcase_02 AC 106 ms
53,076 KB
testcase_03 AC 106 ms
52,880 KB
testcase_04 AC 102 ms
52,752 KB
testcase_05 AC 120 ms
53,984 KB
testcase_06 AC 118 ms
54,008 KB
testcase_07 AC 119 ms
53,888 KB
testcase_08 AC 106 ms
52,836 KB
testcase_09 AC 118 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long n = sc.nextLong();
    if(n % 2 == 0) {
      System.out.println(n / 2);
    } else {
      System.out.println(n);
    }
  }
}
0