結果

問題 No.544 Delete 7
ユーザー Mcpu3Mcpu3
提出日時 2018-06-29 16:42:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 435 ms / 1,000 ms
コード長 390 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 76,868 KB
実行使用メモリ 56,544 KB
最終ジャッジ日時 2024-06-30 23:50:16
合計ジャッジ時間 13,471 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,768 KB
testcase_01 AC 157 ms
54,668 KB
testcase_02 AC 160 ms
54,656 KB
testcase_03 AC 189 ms
54,976 KB
testcase_04 AC 162 ms
54,824 KB
testcase_05 AC 156 ms
54,488 KB
testcase_06 AC 435 ms
54,728 KB
testcase_07 AC 157 ms
54,844 KB
testcase_08 AC 159 ms
54,800 KB
testcase_09 AC 162 ms
54,780 KB
testcase_10 AC 165 ms
54,792 KB
testcase_11 AC 159 ms
54,980 KB
testcase_12 AC 160 ms
54,836 KB
testcase_13 AC 158 ms
54,992 KB
testcase_14 AC 160 ms
54,792 KB
testcase_15 AC 158 ms
54,620 KB
testcase_16 AC 160 ms
54,784 KB
testcase_17 AC 158 ms
54,608 KB
testcase_18 AC 156 ms
54,640 KB
testcase_19 AC 157 ms
54,792 KB
testcase_20 AC 162 ms
54,828 KB
testcase_21 AC 160 ms
54,692 KB
testcase_22 AC 158 ms
54,840 KB
testcase_23 AC 150 ms
54,748 KB
testcase_24 AC 158 ms
54,660 KB
testcase_25 AC 157 ms
54,720 KB
testcase_26 AC 161 ms
54,916 KB
testcase_27 AC 159 ms
54,644 KB
testcase_28 AC 157 ms
54,956 KB
testcase_29 AC 156 ms
55,004 KB
testcase_30 AC 160 ms
56,544 KB
testcase_31 AC 164 ms
54,784 KB
testcase_32 AC 158 ms
54,700 KB
testcase_33 AC 168 ms
54,780 KB
testcase_34 AC 163 ms
54,696 KB
testcase_35 AC 164 ms
54,916 KB
testcase_36 AC 157 ms
54,584 KB
testcase_37 AC 165 ms
54,896 KB
testcase_38 AC 159 ms
54,684 KB
testcase_39 AC 192 ms
54,784 KB
testcase_40 AC 182 ms
54,540 KB
testcase_41 AC 159 ms
54,864 KB
testcase_42 AC 158 ms
54,592 KB
testcase_43 AC 160 ms
54,576 KB
testcase_44 AC 156 ms
54,776 KB
testcase_45 AC 296 ms
54,896 KB
testcase_46 AC 345 ms
54,500 KB
testcase_47 AC 165 ms
54,748 KB
testcase_48 AC 162 ms
54,780 KB
testcase_49 AC 187 ms
55,016 KB
testcase_50 AC 164 ms
54,796 KB
testcase_51 AC 187 ms
54,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no544{
	public static void main(String[] args) { 
		Scanner stdIn=new Scanner(System.in);
		int n=stdIn.nextInt(),i,a,b,t=1;
		for(i=1;t!=0;i+=13) {
			a=i;
			b=n-i;
			t=0;
			do {
				if(a%10==7) t++;
				a/=10;
			}while(a!=0);
			do {
				if(b%10==7) t++;
				b/=10;
			}while(b!=0);
		}
		System.out.print(i-13+" "+(n-i+13));
	}
}
0