結果

問題 No.687 E869120 and Constructing Array 1
ユーザー G2G2
提出日時 2018-05-27 02:02:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 76,516 KB
実行使用メモリ 42,540 KB
最終ジャッジ日時 2024-06-28 18:19:44
合計ジャッジ時間 5,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
42,156 KB
testcase_01 AC 154 ms
42,296 KB
testcase_02 AC 153 ms
42,292 KB
testcase_03 AC 140 ms
41,780 KB
testcase_04 AC 155 ms
42,436 KB
testcase_05 WA -
testcase_06 AC 164 ms
42,540 KB
testcase_07 AC 148 ms
42,072 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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;
		}else if(a>=10){
			a = rand.nextInt(10);
		}
		int b = num -a;
		System.out.println(a+" "+b);
	}
}
0