結果

問題 No.816 Beautiful tuples
ユーザー k_6101k_6101
提出日時 2019-12-08 14:56:26
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,415 bytes
コンパイル時間 2,845 ms
コンパイル使用メモリ 80,580 KB
実行使用メモリ 82,676 KB
最終ジャッジ日時 2024-12-30 11:54:07
合計ジャッジ時間 14,979 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
46,476 KB
testcase_01 AC 131 ms
82,624 KB
testcase_02 AC 132 ms
46,592 KB
testcase_03 AC 415 ms
41,068 KB
testcase_04 AC 118 ms
39,792 KB
testcase_05 AC 137 ms
41,188 KB
testcase_06 AC 127 ms
40,972 KB
testcase_07 AC 357 ms
41,048 KB
testcase_08 AC 307 ms
41,100 KB
testcase_09 AC 389 ms
41,480 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 135 ms
82,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStream;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Set;
import java.util.Stack;
import java.util.TreeMap;
import java.util.TreeSet;

import static java.util.Comparator.*;

public class Main {
    public static void main(String[] args) {
        PrintWriter out = new PrintWriter(System.out);
        Solver solver = new Solver(System.in, out);
        solver.solve();
        out.close();
    }
}
class Solver {
	Scanner sc;
	PrintWriter out;
    public Solver(InputStream in, PrintWriter out) {
    	sc = new Scanner(in);
    	this.out = out;
    }
    // ==================================================================
    public void solve() {
    	int A = Integer.parseInt(sc.next());
    	int B = Integer.parseInt(sc.next());
    	if(A == B) {
    		out.println(A);
    		return;
    	}
    	for (int C = Math.abs(A-B); C <= (A+B); C++) {
    	    if(C== A || C == B)     continue;
			if((A+B) % C == 0 && (B+C) % A == 0 && (A+C) % B == 0) {
				out.println(C);
				return;
			}
		}
    	out.println(-1);
    }
    // ==================================================================
}
0