結果
問題 | No.8023 素数判定するだけ |
ユーザー |
![]() |
提出日時 | 2017-04-21 05:19:37 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 32 ms / 1,000 ms |
コード長 | 875 bytes |
コンパイル時間 | 1,028 ms |
コンパイル使用メモリ | 112,504 KB |
実行使用メモリ | 27,112 KB |
最終ジャッジ日時 | 2024-10-04 20:24:22 |
合計ジャッジ時間 | 4,708 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;using System.Collections;using System.Collections.Generic;using System.Collections.Specialized;using System.Text;using System.Text.RegularExpressions;using System.Linq;using System.IO;class Program{static void Main(string[] args){int N = int.Parse(Console.ReadLine());int[] range = (new int[N]).Select((i, index) => index).ToArray();int zero = range.Min();var rr = range.Where(i => i != zero).ToArray();if (rr.Length == zero){Console.WriteLine("NO");return;}int one = rr.Min();rr = rr.Where(i => i != one).ToArray();foreach(int i in rr){if (N % i == zero){Console.WriteLine("NO");return;}}Console.WriteLine("YES");}}