結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,576 KB
testcase_01 AC 152 ms
54,644 KB
testcase_02 AC 153 ms
54,524 KB
testcase_03 AC 154 ms
54,624 KB
testcase_04 AC 153 ms
54,860 KB
testcase_05 AC 151 ms
54,716 KB
testcase_06 AC 151 ms
54,900 KB
testcase_07 AC 153 ms
55,076 KB
testcase_08 AC 153 ms
54,652 KB
testcase_09 AC 156 ms
54,816 KB
testcase_10 AC 151 ms
54,880 KB
testcase_11 AC 154 ms
54,776 KB
testcase_12 AC 152 ms
54,756 KB
testcase_13 AC 161 ms
54,588 KB
testcase_14 AC 153 ms
54,684 KB
testcase_15 AC 139 ms
54,416 KB
testcase_16 AC 147 ms
54,304 KB
testcase_17 AC 152 ms
54,840 KB
testcase_18 AC 159 ms
54,864 KB
testcase_19 AC 153 ms
54,876 KB
testcase_20 AC 162 ms
54,560 KB
testcase_21 AC 151 ms
54,952 KB
testcase_22 AC 152 ms
55,080 KB
testcase_23 AC 139 ms
54,744 KB
testcase_24 AC 152 ms
54,968 KB
testcase_25 AC 152 ms
54,648 KB
testcase_26 AC 151 ms
54,792 KB
testcase_27 AC 154 ms
54,768 KB
testcase_28 AC 147 ms
54,164 KB
testcase_29 AC 153 ms
54,840 KB
testcase_30 AC 153 ms
54,948 KB
testcase_31 AC 149 ms
54,760 KB
testcase_32 AC 149 ms
54,828 KB
testcase_33 AC 150 ms
54,628 KB
testcase_34 AC 149 ms
54,688 KB
testcase_35 AC 154 ms
54,840 KB
testcase_36 AC 150 ms
54,560 KB
testcase_37 AC 149 ms
55,080 KB
testcase_38 AC 153 ms
54,968 KB
testcase_39 AC 152 ms
54,856 KB
testcase_40 AC 149 ms
54,704 KB
testcase_41 AC 152 ms
54,832 KB
testcase_42 AC 154 ms
54,936 KB
testcase_43 AC 160 ms
54,860 KB
testcase_44 AC 152 ms
54,752 KB
testcase_45 AC 139 ms
54,248 KB
testcase_46 AC 150 ms
54,812 KB
testcase_47 AC 152 ms
54,576 KB
testcase_48 AC 151 ms
54,712 KB
testcase_49 AC 154 ms
54,780 KB
testcase_50 AC 153 ms
54,868 KB
testcase_51 AC 154 ms
54,748 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