結果

問題 No.816 Beautiful tuples
ユーザー solitarywalkersolitarywalker
提出日時 2019-05-12 23:31:03
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 4,210 ms
コンパイル使用メモリ 105,556 KB
実行使用メモリ 26,036 KB
最終ジャッジ日時 2023-09-19 07:11:01
合計ジャッジ時間 4,391 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
21,740 KB
testcase_01 AC 61 ms
21,852 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 61 ms
19,828 KB
testcase_08 AC 61 ms
21,904 KB
testcase_09 AC 61 ms
21,796 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 61 ms
23,828 KB
testcase_13 AC 60 ms
23,920 KB
testcase_14 AC 61 ms
23,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

public class Program
{
    const ulong value = 1000000000000000000;
    public static void Main()
    {
        var pairs = Console.ReadLine().Split(' ').Select(s => ulong.Parse(s)).ToArray();
        ulong result = 0;
        for (ulong i = 1; i <= 10; i++)
        {
            if (pairs[0] != pairs[1] && pairs[1] != i && i != pairs[0] && (pairs[0] + pairs[1]) % i == 0 && (i + pairs[0]) % pairs[1] == 0 && (i + pairs[1]) % pairs[0] == 0)
            {
                result = i;
                break;
            }
        }
        if (result != 0)
            Console.WriteLine(result);
        else
            Console.WriteLine("-1");
    }
}
0