結果

問題 No.816 Beautiful tuples
ユーザー howakurohowakuro
提出日時 2019-04-20 08:13:26
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 307 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 27,392 KB
最終ジャッジ日時 2025-01-07 02:45:34
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
13,636 KB
testcase_01 AC 1 ms
8,228 KB
testcase_02 AC 45 ms
13,636 KB
testcase_03 AC 279 ms
8,224 KB
testcase_04 AC 50 ms
8,224 KB
testcase_05 AC 976 ms
13,644 KB
testcase_06 AC 100 ms
13,632 KB
testcase_07 AC 312 ms
6,816 KB
testcase_08 AC 177 ms
6,816 KB
testcase_09 AC 233 ms
6,820 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 0 ms
8,232 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 |     scanf("%d %d", &A, &B);
      |     ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int main(){
    int A,B;
    scanf("%d %d", &A, &B);
    for(int C = 1;C <= A + B; C++){
        if(A != C && B != C){
            if((A+B)%C == 0 && (B+C) % A == 0 && (C+A)%B==0){
                printf("%d",C);
                return 0;
            }
        }
    }
    printf("-1");
}
0