結果
問題 | No.687 E869120 and Constructing Array 1 |
ユーザー | G2 |
提出日時 | 2018-05-27 01:47:16 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 312 bytes |
コンパイル時間 | 3,589 ms |
コンパイル使用メモリ | 76,884 KB |
実行使用メモリ | 42,424 KB |
最終ジャッジ日時 | 2024-06-28 18:19:26 |
合計ジャッジ時間 | 4,969 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 141 ms
42,244 KB |
testcase_01 | AC | 138 ms
42,424 KB |
testcase_02 | AC | 142 ms
42,104 KB |
testcase_03 | AC | 133 ms
42,284 KB |
testcase_04 | AC | 131 ms
42,248 KB |
testcase_05 | AC | 162 ms
42,364 KB |
testcase_06 | WA | - |
testcase_07 | AC | 133 ms
42,256 KB |
testcase_08 | WA | - |
ソースコード
import java.util.Scanner; import java.util.Random; public class no687 { public static void main(String[] args){ Scanner s = new Scanner(System.in); int num = s.nextInt(); Random rand = new Random(); int a = rand.nextInt(num); if(a==0){ a=1; } int b = num -a; System.out.println(a+" "+b); } }