結果

問題 No.544 Delete 7
ユーザー NoNo
提出日時 2017-08-01 22:56:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 1,000 ms
コード長 521 bytes
コンパイル時間 2,367 ms
コンパイル使用メモリ 77,064 KB
実行使用メモリ 42,676 KB
最終ジャッジ日時 2024-05-01 12:06:58
合計ジャッジ時間 12,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
42,232 KB
testcase_01 AC 162 ms
42,316 KB
testcase_02 AC 161 ms
42,404 KB
testcase_03 AC 162 ms
42,480 KB
testcase_04 AC 163 ms
42,308 KB
testcase_05 AC 161 ms
42,336 KB
testcase_06 AC 161 ms
42,260 KB
testcase_07 AC 161 ms
42,320 KB
testcase_08 AC 159 ms
42,300 KB
testcase_09 AC 150 ms
42,064 KB
testcase_10 AC 161 ms
42,244 KB
testcase_11 AC 163 ms
42,296 KB
testcase_12 AC 157 ms
42,460 KB
testcase_13 AC 157 ms
42,100 KB
testcase_14 AC 158 ms
42,196 KB
testcase_15 AC 146 ms
42,160 KB
testcase_16 AC 149 ms
41,940 KB
testcase_17 AC 157 ms
42,172 KB
testcase_18 AC 156 ms
42,472 KB
testcase_19 AC 156 ms
42,456 KB
testcase_20 AC 156 ms
42,292 KB
testcase_21 AC 159 ms
42,328 KB
testcase_22 AC 160 ms
42,576 KB
testcase_23 AC 157 ms
42,256 KB
testcase_24 AC 158 ms
42,108 KB
testcase_25 AC 157 ms
42,332 KB
testcase_26 AC 157 ms
42,572 KB
testcase_27 AC 157 ms
42,172 KB
testcase_28 AC 155 ms
42,476 KB
testcase_29 AC 155 ms
42,312 KB
testcase_30 AC 158 ms
42,208 KB
testcase_31 AC 157 ms
42,332 KB
testcase_32 AC 158 ms
42,112 KB
testcase_33 AC 158 ms
42,308 KB
testcase_34 AC 160 ms
42,260 KB
testcase_35 AC 159 ms
42,344 KB
testcase_36 AC 161 ms
42,284 KB
testcase_37 AC 161 ms
42,380 KB
testcase_38 AC 160 ms
42,244 KB
testcase_39 AC 160 ms
42,404 KB
testcase_40 AC 160 ms
42,320 KB
testcase_41 AC 155 ms
42,336 KB
testcase_42 AC 161 ms
42,252 KB
testcase_43 AC 161 ms
42,244 KB
testcase_44 AC 148 ms
41,992 KB
testcase_45 AC 161 ms
42,428 KB
testcase_46 AC 159 ms
42,052 KB
testcase_47 AC 159 ms
42,676 KB
testcase_48 AC 159 ms
42,296 KB
testcase_49 AC 159 ms
42,360 KB
testcase_50 AC 147 ms
42,000 KB
testcase_51 AC 156 ms
42,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Random;
import java.util.Scanner;

public class Main {
    public static void main(String[] args){
    	Scanner sc = new Scanner(System.in);
    	Random ra = new Random();

    	int n = sc.nextInt();
    	boolean f = true;
    	int a = 0;
    	int b = 0;
    	do{
    		a = ra.nextInt(n);
    		b = n - a;
    		
    		if(!String.valueOf(a).contains("7")
    				&& !String.valueOf(b).contains("7"))
			{
				f = false;
    		}
    		
    	}while(f);
    			
    	System.out.println(a + " " + b);
    }
}
0