結果

問題 No.815 Are you a traveller ?
ユーザー rabirabi
提出日時 2019-06-25 13:13:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 3,786 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 37,124 KB
最終ジャッジ日時 2024-06-22 23:50:38
合計ジャッジ時間 4,320 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,680 KB
testcase_01 AC 51 ms
37,124 KB
testcase_02 AC 51 ms
36,876 KB
testcase_03 AC 50 ms
36,848 KB
testcase_04 AC 50 ms
37,008 KB
testcase_05 AC 50 ms
36,972 KB
testcase_06 AC 49 ms
36,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Tester {

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