結果

問題 No.276 連続する整数の和(1)
ユーザー YamaKasaYamaKasa
提出日時 2018-09-08 20:27:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 267 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-05-10 00:37:11
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,188 KB
testcase_01 AC 128 ms
41,288 KB
testcase_02 AC 129 ms
41,480 KB
testcase_03 AC 127 ms
41,316 KB
testcase_04 AC 115 ms
40,440 KB
testcase_05 AC 129 ms
41,560 KB
testcase_06 AC 131 ms
41,484 KB
testcase_07 AC 129 ms
41,260 KB
testcase_08 AC 133 ms
41,516 KB
testcase_09 AC 131 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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