結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,088 KB
testcase_01 AC 52 ms
36,892 KB
testcase_02 AC 50 ms
37,036 KB
testcase_03 AC 50 ms
36,904 KB
testcase_04 AC 50 ms
37,072 KB
testcase_05 AC 50 ms
36,796 KB
testcase_06 AC 50 ms
37,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
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()) +1;
			System.out.println(num/2);
	}
}
0