結果
問題 | No.816 Beautiful tuples |
ユーザー | akakimidori |
提出日時 | 2019-04-19 21:30:09 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,500 ms |
コード長 | 627 bytes |
コンパイル時間 | 926 ms |
コンパイル使用メモリ | 28,416 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-22 16:40:33 |
合計ジャッジ時間 | 1,053 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 1 ms
6,944 KB |
ソースコード
#include<stdio.h> #include<stdlib.h> #include<stdint.h> #include<inttypes.h> typedef int32_t i32; typedef int64_t i64; #define MAX(a,b) ((a) > (b) ? (a) : (b)) #define MIN(a,b) ((a) < (b) ? (a) : (b)) void run (void) { i32 a, b; scanf ("%" SCNi32 "%" SCNi32, &a, &b); i32 x = MIN(a, b); i32 y = MAX(a, b); i32 c = y - x; if ((x + y) % c == 0 && (c + y) % x == 0 && c != x && c != y) { printf ("%" PRIi32 "\n", c); return; } c = x + y; if (((i64) c + x) % y == 0 && ((i64) c + y) % x == 0) { printf ("%" PRIi32 "\n", c); return; } puts("-1"); } int main (void) { run(); return 0; }