結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | pirorirori_n712 |
提出日時 | 2018-10-19 00:29:57 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 1,044 ms |
コンパイル使用メモリ | 103,552 KB |
実行使用メモリ | 23,168 KB |
最終ジャッジ日時 | 2024-11-07 17:19:01 |
合計ジャッジ時間 | 7,872 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
23,168 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.
ソースコード
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; } }