結果

問題 No.544 Delete 7
ユーザー NoNo
提出日時 2017-08-01 22:56:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 521 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 81,320 KB
実行使用メモリ 55,372 KB
最終ジャッジ日時 2024-11-21 16:23:38
合計ジャッジ時間 12,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
55,180 KB
testcase_01 AC 148 ms
54,972 KB
testcase_02 AC 153 ms
55,020 KB
testcase_03 AC 152 ms
54,884 KB
testcase_04 AC 155 ms
54,420 KB
testcase_05 AC 154 ms
54,948 KB
testcase_06 AC 156 ms
55,008 KB
testcase_07 AC 157 ms
54,768 KB
testcase_08 AC 158 ms
55,080 KB
testcase_09 AC 151 ms
55,260 KB
testcase_10 AC 155 ms
55,136 KB
testcase_11 AC 149 ms
54,604 KB
testcase_12 AC 158 ms
54,564 KB
testcase_13 AC 153 ms
55,372 KB
testcase_14 AC 154 ms
55,064 KB
testcase_15 AC 158 ms
55,140 KB
testcase_16 AC 158 ms
54,920 KB
testcase_17 AC 157 ms
55,132 KB
testcase_18 AC 152 ms
55,180 KB
testcase_19 AC 140 ms
54,780 KB
testcase_20 AC 151 ms
54,876 KB
testcase_21 AC 154 ms
54,996 KB
testcase_22 AC 160 ms
54,808 KB
testcase_23 AC 149 ms
55,120 KB
testcase_24 AC 158 ms
54,500 KB
testcase_25 AC 158 ms
54,076 KB
testcase_26 AC 137 ms
54,484 KB
testcase_27 AC 158 ms
54,276 KB
testcase_28 AC 149 ms
54,888 KB
testcase_29 AC 150 ms
55,112 KB
testcase_30 AC 152 ms
54,888 KB
testcase_31 AC 160 ms
54,944 KB
testcase_32 AC 153 ms
54,696 KB
testcase_33 AC 151 ms
55,000 KB
testcase_34 AC 142 ms
54,812 KB
testcase_35 AC 153 ms
54,964 KB
testcase_36 AC 154 ms
54,688 KB
testcase_37 AC 139 ms
54,540 KB
testcase_38 AC 154 ms
55,120 KB
testcase_39 AC 151 ms
55,092 KB
testcase_40 AC 153 ms
54,972 KB
testcase_41 AC 139 ms
54,380 KB
testcase_42 AC 151 ms
54,880 KB
testcase_43 AC 141 ms
54,788 KB
testcase_44 AC 151 ms
55,104 KB
testcase_45 AC 153 ms
54,836 KB
testcase_46 AC 157 ms
55,112 KB
testcase_47 AC 140 ms
54,216 KB
testcase_48 AC 153 ms
54,992 KB
testcase_49 AC 142 ms
55,212 KB
testcase_50 AC 156 ms
55,036 KB
testcase_51 AC 157 ms
54,888 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