結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
42,556 KB
testcase_01 AC 153 ms
42,436 KB
testcase_02 AC 155 ms
42,144 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 151 ms
42,288 KB
testcase_07 AC 142 ms
41,936 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(10);
		if(a==0){
			a=1;
		}
		int b = num -a;
		System.out.println(a+" "+b);
	}
}
0