結果
問題 |
No.687 E869120 and Constructing Array 1
|
ユーザー |
|
提出日時 | 2021-06-19 12:50:21 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 73 ms / 1,000 ms |
コード長 | 369 bytes |
コンパイル時間 | 3,258 ms |
コンパイル使用メモリ | 75,468 KB |
実行使用メモリ | 51,144 KB |
最終ジャッジ日時 | 2024-06-22 21:57:37 |
合計ジャッジ時間 | 4,889 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 6 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No00000687_Main { static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); public static void main(String[] args) throws IOException { int n = Integer.parseInt(br.readLine()); System.out.println((n / 2) + " " + (n - (n / 2))); } }