結果

問題 No.1665 quotient replace
ユーザー Nodoka4318Nodoka4318
提出日時 2021-09-03 22:39:03
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,954 bytes
コンパイル時間 1,455 ms
コンパイル使用メモリ 103,808 KB
実行使用メモリ 107,968 KB
最終ジャッジ日時 2024-12-15 15:28:15
合計ジャッジ時間 121,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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