結果

問題 No.544 Delete 7
ユーザー tanzakutanzaku
提出日時 2017-07-14 22:55:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 1,000 ms
コード長 695 bytes
コンパイル時間 3,929 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 42,696 KB
最終ジャッジ日時 2024-05-01 11:56:37
合計ジャッジ時間 13,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
42,488 KB
testcase_01 AC 147 ms
42,284 KB
testcase_02 AC 152 ms
42,220 KB
testcase_03 AC 151 ms
42,656 KB
testcase_04 AC 151 ms
42,288 KB
testcase_05 AC 157 ms
42,636 KB
testcase_06 AC 155 ms
42,468 KB
testcase_07 AC 161 ms
42,572 KB
testcase_08 AC 149 ms
41,948 KB
testcase_09 AC 160 ms
42,284 KB
testcase_10 AC 154 ms
42,292 KB
testcase_11 AC 155 ms
42,476 KB
testcase_12 AC 158 ms
42,476 KB
testcase_13 AC 153 ms
42,280 KB
testcase_14 AC 154 ms
42,288 KB
testcase_15 AC 150 ms
42,344 KB
testcase_16 AC 152 ms
42,220 KB
testcase_17 AC 152 ms
42,664 KB
testcase_18 AC 151 ms
42,696 KB
testcase_19 AC 152 ms
42,360 KB
testcase_20 AC 155 ms
42,508 KB
testcase_21 AC 155 ms
42,624 KB
testcase_22 AC 157 ms
42,584 KB
testcase_23 AC 158 ms
42,460 KB
testcase_24 AC 155 ms
42,408 KB
testcase_25 AC 157 ms
42,588 KB
testcase_26 AC 154 ms
42,476 KB
testcase_27 AC 155 ms
42,488 KB
testcase_28 AC 149 ms
41,892 KB
testcase_29 AC 153 ms
42,616 KB
testcase_30 AC 153 ms
42,520 KB
testcase_31 AC 152 ms
42,568 KB
testcase_32 AC 151 ms
42,292 KB
testcase_33 AC 139 ms
42,428 KB
testcase_34 AC 158 ms
42,436 KB
testcase_35 AC 159 ms
42,300 KB
testcase_36 AC 154 ms
42,292 KB
testcase_37 AC 154 ms
42,280 KB
testcase_38 AC 162 ms
42,452 KB
testcase_39 AC 150 ms
42,540 KB
testcase_40 AC 150 ms
42,340 KB
testcase_41 AC 153 ms
42,668 KB
testcase_42 AC 151 ms
42,488 KB
testcase_43 AC 154 ms
42,456 KB
testcase_44 AC 152 ms
42,488 KB
testcase_45 AC 164 ms
42,492 KB
testcase_46 AC 152 ms
42,268 KB
testcase_47 AC 138 ms
42,400 KB
testcase_48 AC 151 ms
42,632 KB
testcase_49 AC 150 ms
42,432 KB
testcase_50 AC 155 ms
42,340 KB
testcase_51 AC 148 ms
42,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;

public class No543 {

	public static void main(String[] args) {
		try (final Scanner sc = new Scanner(System.in)) {
			int n = sc.nextInt();
			Random random = new Random();
			while (true) {
				int a = random.nextInt(2_000_000_001) - 1_000_000_000;
				int b = n - a;
				if (Math.abs(b) > 1_000_000_000) continue;
				if ((a+"").indexOf('7') < 0 && (b+"").indexOf('7') < 0) {
					System.out.println(a + " " + b);
					break;
				}
			}
		}
	}
	
	static long gcd(long n, long r) { return r == 0 ? n : gcd(r, n % r); }
	static long lcm(long n, long r) { return n/gcd(n,r)*r; }
	static void dump(Object... objects) { System.err.println(Arrays.deepToString(objects)); }
}
0