結果
問題 | No.816 Beautiful tuples |
ユーザー | takeya_okino |
提出日時 | 2019-08-19 23:18:53 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 777 bytes |
コンパイル時間 | 2,191 ms |
コンパイル使用メモリ | 77,104 KB |
実行使用メモリ | 41,520 KB |
最終ジャッジ日時 | 2024-10-05 09:43:49 |
合計ジャッジ時間 | 3,968 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 98 ms
40,576 KB |
testcase_01 | WA | - |
testcase_02 | AC | 97 ms
40,016 KB |
testcase_03 | AC | 107 ms
41,180 KB |
testcase_04 | AC | 98 ms
40,008 KB |
testcase_05 | AC | 108 ms
40,812 KB |
testcase_06 | AC | 109 ms
41,192 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 105 ms
40,996 KB |
testcase_11 | AC | 108 ms
41,084 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long a = sc.nextLong(); long b = sc.nextLong(); long ans = (long)Math.pow(10, 18) + 1; if(a > b) { // 2x, x if(a == (2 * b)) ans = Math.min(ans, 3 * b); // 3x, x if(a == (3 * b)) ans = Math.min(ans, 2 * b); // 3x, 2x if((a % 3 == 0) && (b % 2 == 0) && ((a / 3) == (b / 2))) ans = Math.min(ans, b / 2); } else { // x, 2x if(b == (2 * a)) ans = Math.min(ans, 3 * a); // x, 3x if(b == (3 * a)) ans = Math.min(ans, 2 * a); // 2x, 3x if((b % 3 == 0) && (a % 2 == 0) && ((b / 3) == (a / 2))) ans = Math.min(ans, a / 2); } System.out.println(ans); } }