結果
| 問題 | No.1128 Wedding Ceremony |
| ユーザー |
|
| 提出日時 | 2020-08-02 11:48:22 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 276 bytes |
| 記録 | |
| コンパイル時間 | 2,437 ms |
| コンパイル使用メモリ | 81,100 KB |
| 実行使用メモリ | 125,648 KB |
| 最終ジャッジ日時 | 2026-04-02 02:12:52 |
| 合計ジャッジ時間 | 4,308 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 21 |
ソースコード
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
System.out.println(n/2+1);
}
}