結果

問題 No.816 Beautiful tuples
ユーザー k_6101k_6101
提出日時 2019-12-08 14:56:26
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,415 bytes
コンパイル時間 2,955 ms
コンパイル使用メモリ 80,456 KB
実行使用メモリ 46,088 KB
最終ジャッジ日時 2024-06-09 17:00:39
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
46,088 KB
testcase_01 AC 104 ms
40,956 KB
testcase_02 AC 109 ms
41,136 KB
testcase_03 AC 348 ms
40,060 KB
testcase_04 AC 96 ms
40,044 KB
testcase_05 AC 100 ms
40,312 KB
testcase_06 AC 111 ms
41,328 KB
testcase_07 AC 317 ms
41,212 KB
testcase_08 AC 264 ms
41,344 KB
testcase_09 AC 346 ms
41,084 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

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