結果

問題 No.7 プライムナンバーゲーム
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-10-19 00:29:57
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 626 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 103,168 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-04-25 07:03:59
合計ジャッジ時間 7,297 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,792 KB
testcase_01 TLE -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

class No7{
    static void Main(){
        var N=Int32.Parse(Console.ReadLine());
        var count=0;
        while(!(N==2||N==3)){
            count++;
            N-=GetMaxNum(N);
        }
        Console.WriteLine(count%2==0?"Lose":"Win");
    }
    static int GetMaxNum(int num){
        var n=0;
        for(int i=num-1;1<i;--i){
            var max=Math.Sqrt(num);
            n=i;
            for(int j=2;j<max;j++){
                if(i%j==0){
                n=0;
                break;
                }
            }
            if(n!=0)break;
        }
        return n;
    }
}
0