結果

問題 No.36 素数が嫌い!
ユーザー AreTrashAreTrash
提出日時 2016-04-13 09:30:13
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 587 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 112,656 KB
実行使用メモリ 25,820 KB
最終ジャッジ日時 2024-10-04 07:14:05
合計ジャッジ時間 2,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,692 KB
testcase_01 AC 24 ms
23,756 KB
testcase_02 AC 23 ms
25,556 KB
testcase_03 AC 22 ms
23,492 KB
testcase_04 WA -
testcase_05 AC 24 ms
25,676 KB
testcase_06 AC 23 ms
23,516 KB
testcase_07 AC 24 ms
23,724 KB
testcase_08 AC 25 ms
21,684 KB
testcase_09 AC 24 ms
23,644 KB
testcase_10 AC 23 ms
25,680 KB
testcase_11 AC 57 ms
25,560 KB
testcase_12 AC 124 ms
23,392 KB
testcase_13 WA -
testcase_14 AC 24 ms
23,520 KB
testcase_15 AC 22 ms
25,664 KB
testcase_16 AC 21 ms
23,648 KB
testcase_17 AC 23 ms
23,492 KB
testcase_18 AC 23 ms
23,516 KB
testcase_19 AC 22 ms
23,648 KB
testcase_20 AC 27 ms
23,856 KB
testcase_21 AC 23 ms
23,724 KB
testcase_22 AC 23 ms
23,620 KB
testcase_23 AC 23 ms
23,720 KB
testcase_24 AC 38 ms
24,028 KB
testcase_25 AC 22 ms
25,672 KB
testcase_26 AC 84 ms
23,728 KB
testcase_27 AC 109 ms
23,640 KB
testcase_28 AC 83 ms
23,516 KB
testcase_29 AC 120 ms
23,600 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace No36_1{
    public class Program{
        public static void Main(string[] args){
            var input = long.Parse(Console.ReadLine());
            var tmp = input;
            var cnt = 0;

            for(long i = 2; i * i <= input; i++){
                while(tmp % i == 0){
                    tmp /= i;
                    cnt++;
                    if(cnt == 2) {
                        Console.WriteLine("YES");
                        return;
                    }
                }
            }
            Console.WriteLine("NO");
        }
    }
}
0