結果

問題 No.276 連続する整数の和(1)
ユーザー gu_21816943gu_21816943
提出日時 2017-06-27 02:18:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 395 bytes
コンパイル時間 1,735 ms
コンパイル使用メモリ 72,888 KB
実行使用メモリ 37,108 KB
最終ジャッジ日時 2024-10-04 10:02:54
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,732 KB
testcase_01 AC 42 ms
36,836 KB
testcase_02 AC 43 ms
36,976 KB
testcase_03 AC 43 ms
36,892 KB
testcase_04 AC 43 ms
36,992 KB
testcase_05 AC 44 ms
36,720 KB
testcase_06 AC 45 ms
36,924 KB
testcase_07 AC 43 ms
37,016 KB
testcase_08 AC 44 ms
37,108 KB
testcase_09 AC 44 ms
36,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

class Main {
	public static void main(String[] args) throws IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int num = Integer.parseInt(br.readLine());
		br.close();
		if(num%2==0){
			System.out.println(num/2);
		}else{
			System.out.println(num);
		}

	}
}
0