結果

問題 No.2194 兄弟の掛け引き
ユーザー bluemeganebluemegane
提出日時 2023-01-20 22:42:34
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 1,000 ms
コード長 586 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 109,660 KB
実行使用メモリ 26,288 KB
最終ジャッジ日時 2024-06-23 10:40:18
合計ジャッジ時間 1,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
24,376 KB
testcase_01 AC 26 ms
24,244 KB
testcase_02 AC 25 ms
24,108 KB
testcase_03 AC 28 ms
22,324 KB
testcase_04 AC 27 ms
24,068 KB
testcase_05 AC 24 ms
24,064 KB
testcase_06 AC 26 ms
23,980 KB
testcase_07 AC 27 ms
24,308 KB
testcase_08 AC 26 ms
23,936 KB
testcase_09 AC 28 ms
26,288 KB
testcase_10 AC 26 ms
26,084 KB
testcase_11 AC 27 ms
26,224 KB
testcase_12 AC 24 ms
22,196 KB
testcase_13 AC 28 ms
25,976 KB
testcase_14 AC 28 ms
24,244 KB
testcase_15 AC 24 ms
24,112 KB
testcase_16 AC 27 ms
24,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System.Collections.Generic;
using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var a = int.Parse(line[0]);
        var b = int.Parse(line[1]);
        var c = int.Parse(line[2]);
        var ans = new List<int>();
        if ((b + c) % a == 0) ans.Add((b + c) / a);
        if (c % a == 0 && c <= b) ans.Add(c / a);
        ans.Sort();
        if (ans.Count == 0) Console.WriteLine(-1);
        else Console.WriteLine(string.Join("\n", ans));
    }
}
0