結果

問題 No.544 Delete 7
ユーザー Mcpu3Mcpu3
提出日時 2018-06-29 16:43:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 312 ms / 1,000 ms
コード長 390 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 76,820 KB
実行使用メモリ 42,600 KB
最終ジャッジ日時 2024-11-21 16:48:52
合計ジャッジ時間 11,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
42,536 KB
testcase_01 AC 132 ms
42,600 KB
testcase_02 AC 136 ms
42,004 KB
testcase_03 AC 146 ms
42,460 KB
testcase_04 AC 134 ms
42,160 KB
testcase_05 AC 137 ms
42,436 KB
testcase_06 AC 312 ms
42,252 KB
testcase_07 AC 119 ms
41,768 KB
testcase_08 AC 147 ms
41,996 KB
testcase_09 AC 129 ms
42,000 KB
testcase_10 AC 148 ms
42,388 KB
testcase_11 AC 150 ms
42,388 KB
testcase_12 AC 139 ms
42,316 KB
testcase_13 AC 141 ms
42,132 KB
testcase_14 AC 145 ms
42,156 KB
testcase_15 AC 138 ms
42,144 KB
testcase_16 AC 138 ms
42,004 KB
testcase_17 AC 146 ms
42,128 KB
testcase_18 AC 141 ms
42,164 KB
testcase_19 AC 149 ms
42,116 KB
testcase_20 AC 140 ms
42,208 KB
testcase_21 AC 143 ms
42,396 KB
testcase_22 AC 128 ms
42,100 KB
testcase_23 AC 144 ms
42,344 KB
testcase_24 AC 135 ms
42,336 KB
testcase_25 AC 140 ms
42,368 KB
testcase_26 AC 137 ms
42,308 KB
testcase_27 AC 125 ms
41,812 KB
testcase_28 AC 126 ms
42,168 KB
testcase_29 AC 122 ms
41,840 KB
testcase_30 AC 123 ms
42,020 KB
testcase_31 AC 142 ms
42,008 KB
testcase_32 AC 135 ms
41,648 KB
testcase_33 AC 139 ms
42,152 KB
testcase_34 AC 138 ms
42,372 KB
testcase_35 AC 144 ms
42,140 KB
testcase_36 AC 145 ms
42,500 KB
testcase_37 AC 144 ms
42,572 KB
testcase_38 AC 132 ms
41,648 KB
testcase_39 AC 158 ms
42,132 KB
testcase_40 AC 154 ms
42,316 KB
testcase_41 AC 138 ms
42,340 KB
testcase_42 AC 127 ms
42,196 KB
testcase_43 AC 141 ms
42,348 KB
testcase_44 AC 125 ms
42,124 KB
testcase_45 AC 222 ms
42,008 KB
testcase_46 AC 258 ms
42,564 KB
testcase_47 AC 148 ms
42,400 KB
testcase_48 AC 143 ms
42,296 KB
testcase_49 AC 145 ms
41,944 KB
testcase_50 AC 137 ms
42,352 KB
testcase_51 AC 160 ms
42,588 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+=17) {
			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-17+" "+(n-i+17));
	}
}
0