結果

問題 No.544 Delete 7
ユーザー tanzakutanzaku
提出日時 2017-07-14 22:51:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 3,984 ms
コンパイル使用メモリ 77,132 KB
実行使用メモリ 55,144 KB
最終ジャッジ日時 2024-10-07 23:22:02
合計ジャッジ時間 13,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,916 KB
testcase_01 AC 149 ms
54,908 KB
testcase_02 AC 147 ms
54,852 KB
testcase_03 AC 157 ms
54,912 KB
testcase_04 WA -
testcase_05 AC 155 ms
54,836 KB
testcase_06 WA -
testcase_07 AC 152 ms
54,924 KB
testcase_08 AC 152 ms
55,036 KB
testcase_09 AC 140 ms
54,760 KB
testcase_10 AC 138 ms
54,724 KB
testcase_11 AC 151 ms
54,616 KB
testcase_12 AC 152 ms
54,888 KB
testcase_13 AC 158 ms
54,868 KB
testcase_14 AC 159 ms
54,956 KB
testcase_15 AC 155 ms
54,888 KB
testcase_16 WA -
testcase_17 AC 140 ms
54,684 KB
testcase_18 AC 151 ms
54,824 KB
testcase_19 AC 158 ms
55,096 KB
testcase_20 AC 153 ms
54,864 KB
testcase_21 AC 149 ms
54,784 KB
testcase_22 WA -
testcase_23 AC 154 ms
54,892 KB
testcase_24 AC 157 ms
54,632 KB
testcase_25 AC 158 ms
54,744 KB
testcase_26 AC 157 ms
54,896 KB
testcase_27 WA -
testcase_28 AC 158 ms
54,976 KB
testcase_29 AC 148 ms
54,848 KB
testcase_30 AC 148 ms
55,112 KB
testcase_31 AC 150 ms
54,700 KB
testcase_32 AC 149 ms
54,760 KB
testcase_33 AC 158 ms
54,752 KB
testcase_34 AC 138 ms
54,556 KB
testcase_35 AC 151 ms
54,836 KB
testcase_36 AC 138 ms
54,604 KB
testcase_37 AC 157 ms
54,684 KB
testcase_38 AC 156 ms
55,144 KB
testcase_39 AC 137 ms
54,516 KB
testcase_40 AC 162 ms
54,852 KB
testcase_41 AC 148 ms
54,832 KB
testcase_42 AC 153 ms
55,052 KB
testcase_43 AC 152 ms
55,100 KB
testcase_44 AC 152 ms
54,800 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 155 ms
55,032 KB
testcase_48 AC 156 ms
54,892 KB
testcase_49 AC 162 ms
55,048 KB
testcase_50 AC 155 ms
54,852 KB
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.*;

public class No545 {

	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;
				int 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