結果

問題 No.338 アンケート機能
ユーザー huffman56huffman56
提出日時 2022-11-06 09:45:39
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,053 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 110,912 KB
実行使用メモリ 29,300 KB
最終ジャッジ日時 2024-07-20 00:43:55
合計ジャッジ時間 4,324 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
27,256 KB
testcase_01 AC 28 ms
24,960 KB
testcase_02 AC 28 ms
23,096 KB
testcase_03 AC 29 ms
25,212 KB
testcase_04 AC 28 ms
25,216 KB
testcase_05 WA -
testcase_06 AC 28 ms
24,964 KB
testcase_07 WA -
testcase_08 AC 29 ms
25,268 KB
testcase_09 WA -
testcase_10 AC 29 ms
25,092 KB
testcase_11 AC 29 ms
25,208 KB
testcase_12 AC 28 ms
25,008 KB
testcase_13 AC 29 ms
22,836 KB
testcase_14 AC 29 ms
26,880 KB
testcase_15 AC 29 ms
27,304 KB
testcase_16 AC 29 ms
25,220 KB
testcase_17 AC 29 ms
25,132 KB
testcase_18 AC 29 ms
25,008 KB
testcase_19 AC 28 ms
25,136 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 28 ms
25,092 KB
testcase_24 AC 29 ms
26,792 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 29 ms
27,244 KB
testcase_29 AC 28 ms
27,144 KB
testcase_30 AC 28 ms
25,260 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.Numerics;
using static System.Math;

namespace SortItems
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var A = n[0];
            var B = n[1];

            for (var a = 0; a < 200; a++)
            {
                var chk = false;

                for (var b = 0; a + b < 200; b++)
                {
                    double x = Math.Round((100 * (double)a) / (a + b) , MidpointRounding.AwayFromZero);
                    double y = Math.Round((100 * (double)b) / (a + b) , MidpointRounding.AwayFromZero);

                    if (x == A && y == B)
                    {
                        chk = true;
                        Console.WriteLine(a + b);
                        break;
                    }
                }

                if (chk)
                {
                    break;
                }

            }

        }
    }
}
0