結果

問題 No.276 連続する整数の和(1)
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 22:24:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 261 bytes
コンパイル時間 3,484 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-11-22 12:39:01
合計ジャッジ時間 5,624 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,872 KB
testcase_01 AC 130 ms
53,988 KB
testcase_02 AC 133 ms
54,128 KB
testcase_03 AC 133 ms
54,132 KB
testcase_04 AC 131 ms
54,076 KB
testcase_05 AC 135 ms
53,996 KB
testcase_06 AC 134 ms
53,872 KB
testcase_07 AC 135 ms
54,084 KB
testcase_08 AC 133 ms
53,884 KB
testcase_09 AC 137 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int n = sc.nextInt();
		if (n % 2 == 1) {
			System.out.println(n);
		} else {
			System.out.println(n / 2);
		}
	}
}
0