結果

問題 No.544 Delete 7
ユーザー tanzakutanzaku
提出日時 2017-07-14 22:53:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 4,009 ms
コンパイル使用メモリ 86,876 KB
実行使用メモリ 56,876 KB
最終ジャッジ日時 2024-10-07 23:22:57
合計ジャッジ時間 17,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
55,080 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 163 ms
54,928 KB
testcase_06 AC 163 ms
54,884 KB
testcase_07 WA -
testcase_08 AC 161 ms
54,816 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 163 ms
55,040 KB
testcase_13 AC 160 ms
55,072 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 170 ms
55,208 KB
testcase_18 AC 161 ms
54,824 KB
testcase_19 AC 164 ms
54,948 KB
testcase_20 AC 162 ms
55,204 KB
testcase_21 AC 163 ms
54,896 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 159 ms
55,000 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 161 ms
54,900 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 165 ms
55,064 KB
testcase_37 AC 165 ms
55,356 KB
testcase_38 AC 160 ms
54,676 KB
testcase_39 AC 165 ms
55,004 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 173 ms
54,712 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 166 ms
56,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;

public class No543 {

	public static void main(String[] args) {
		try (final Scanner sc = new Scanner(System.in)) {
			long n = sc.nextInt();
			Random random = new Random();
			while (true) {
				long a = random.nextInt();
				long b = n - a;
				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