結果
問題 | No.816 Beautiful tuples |
ユーザー | solitarywalker |
提出日時 | 2019-05-13 00:11:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 770 bytes |
コンパイル時間 | 2,147 ms |
コンパイル使用メモリ | 111,584 KB |
実行使用メモリ | 30,520 KB |
最終ジャッジ日時 | 2024-07-05 20:31:07 |
合計ジャッジ時間 | 7,021 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
24,192 KB |
testcase_01 | AC | 28 ms
18,816 KB |
testcase_02 | AC | 244 ms
18,944 KB |
testcase_03 | AC | 1,380 ms
18,816 KB |
testcase_04 | AC | 265 ms
18,816 KB |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class Program { public static void Main() { var pairs = Console.ReadLine().Split(' ').Select(s => ulong.Parse(s)).ToArray(); ulong result = 0; var value = pairs[0] + pairs[1]; for (ulong i = 1; i <= value; 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"); } }