結果

問題 No.1665 quotient replace
ユーザー Nodoka4318Nodoka4318
提出日時 2021-09-03 22:39:03
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,954 bytes
コンパイル時間 982 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-05-09 05:33:53
合計ジャッジ時間 11,741 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Text;
using System.Text.RegularExpressions;
using System.Threading;

namespace yukicoder_contest_312
{
    class _3
    {
        static void Main (string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            string[] inA = Regex.Split(Console.ReadLine(), "[ ]");
            int[] a = new int[n];
            for (int i = 0; i <= n - 1; i++) a[i] = int.Parse(inA[i]);

            int turn = 0;
            string output;

            while(true)
            {
                a[turn] = process(a[turn]);
                Console.WriteLine(a[turn]);
                //Thread.Sleep(1000);

                int judge = a[0];
                foreach (int i in a)
                {
                    if (i > judge) judge = i;
                }

                if (judge == 1)
                {
                    if (turn % 2 == 0)
                    {
                        output = "white";
                        break;
                    }
                    else
                    {
                        output = "black";
                        break;
                    }
                }
                else
                {
                    if (turn == a.Length - 1) turn = 0;
                    else turn++;
                }

            }
            Console.WriteLine(output);
        }

        static int process (int num)
        {
            int output = 1;

                for (int i = 2; i <= num; i++)
                {
                    if (num % i == 0)
                    {
                        if ((num / i) % 2 != 0)
                        {
                            if (output < num / i)
                            {
                                output = num / i;
                            }
                        }
                    }
                }
            return output;
        }
    }
}
0