結果
問題 | No.531 エヌスクミ島の平和協定 |
ユーザー | eiken7kyuu |
提出日時 | 2019-08-17 20:58:41 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,107 bytes |
コンパイル時間 | 2,346 ms |
コンパイル使用メモリ | 118,108 KB |
実行使用メモリ | 27,456 KB |
最終ジャッジ日時 | 2024-09-25 05:02:43 |
合計ジャッジ時間 | 3,680 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 30 ms
24,908 KB |
testcase_02 | AC | 30 ms
25,288 KB |
testcase_03 | AC | 31 ms
26,956 KB |
testcase_04 | AC | 31 ms
25,156 KB |
testcase_05 | AC | 30 ms
25,164 KB |
testcase_06 | AC | 29 ms
27,072 KB |
testcase_07 | AC | 31 ms
25,300 KB |
testcase_08 | AC | 31 ms
27,216 KB |
testcase_09 | AC | 30 ms
22,964 KB |
testcase_10 | WA | - |
testcase_11 | AC | 30 ms
25,160 KB |
testcase_12 | AC | 29 ms
24,904 KB |
testcase_13 | AC | 31 ms
25,292 KB |
testcase_14 | AC | 31 ms
24,904 KB |
testcase_15 | AC | 33 ms
25,180 KB |
testcase_16 | AC | 31 ms
22,968 KB |
testcase_17 | AC | 30 ms
24,884 KB |
testcase_18 | WA | - |
testcase_19 | AC | 30 ms
25,032 KB |
testcase_20 | AC | 31 ms
25,160 KB |
testcase_21 | AC | 31 ms
27,212 KB |
testcase_22 | AC | 31 ms
24,908 KB |
testcase_23 | AC | 31 ms
25,172 KB |
testcase_24 | AC | 32 ms
26,948 KB |
testcase_25 | AC | 32 ms
27,084 KB |
testcase_26 | AC | 31 ms
27,208 KB |
testcase_27 | AC | 32 ms
25,032 KB |
testcase_28 | AC | 32 ms
25,136 KB |
testcase_29 | AC | 32 ms
27,344 KB |
testcase_30 | AC | 30 ms
25,032 KB |
testcase_31 | AC | 30 ms
25,172 KB |
testcase_32 | AC | 31 ms
25,160 KB |
testcase_33 | AC | 29 ms
25,020 KB |
testcase_34 | AC | 30 ms
25,164 KB |
testcase_35 | AC | 30 ms
25,172 KB |
testcase_36 | AC | 30 ms
24,880 KB |
testcase_37 | AC | 33 ms
25,032 KB |
testcase_38 | AC | 30 ms
27,200 KB |
コンパイルメッセージ
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.Generic; using System.Linq; using static System.Math; namespace ConsoleApp1 { class Program { static void Main(string[] args) { A(); } static void A() { var nm = ReadSplitInt(); var n = nm[0]; var m = nm[1]; var a = Range(1, n + 1).Where(x => x % 2 == 0).Count(); var b = Range(1, n + 1).Where(x => x % 2 != 0).Count(); if (n <= m) Println(1); else if (a <= m && b <= m) Println(2); else Println(-1); } static List<long> ReadLines(long n) { var l = new List<long>(); for (long i = 0; i < n; i++) { l.Add(ReadLong()); } return l; } static void YESOrNO(bool e) => Println(e ? "YES" : "NO"); static void YesOrNo(bool e) => Println(e ? "Yes" : "No"); static IEnumerable<int> Range(int start, int stop) { if (start < 0 || stop < 0 || start > stop || (start <= 0 && stop <= 0)) return new List<int>(); return Enumerable.Range(start, stop - start); } static bool IsDigit(string str) { var i = 0; return int.TryParse(str, out i); } static int SumDigits(long num) { return num.ToString().Select(x => x.ToString()).Sum(int.Parse); } static int[] ToIntArray(string str) { return str.Select(x => x.ToString()).Select(int.Parse).ToArray(); } static long Gcd(long a, long b) => b == 0 ? a : Gcd(b, a % b); static long Lcm(long a, long b) => a / Gcd(a, b) * b; static bool IsPrime(int x) { if (x <= 1 || (x != 2 && x % 2 == 0)) return false; if (x == 2) return true; for (int i = 3; i < x; i += 2) if (x % i == 0) return false; return true; } static string Read() => Console.ReadLine(); static int ReadInt() => int.Parse(Read()); static long ReadLong() => long.Parse(Read()); static List<string> ReadSplit() => Read().Split().ToList(); static List<int> ReadSplitInt() => Read().Split().Select(int.Parse).ToList(); static List<long> ReadSplitLong() => Read().Split().Select(long.Parse).ToList(); static void Print(object value) => Console.Write(value.ToString()); static void Println(object value) => Console.WriteLine(value.ToString()); static string Join<T>(IEnumerable<T> list) => string.Join("", list); } public static class MyExtensions { public static string Slice(this string str, int start = 0, int stop = 0) { if (start > str.Length || stop > str.Length || start < 0 || stop < 0) return ""; if (stop == 0) stop = str.Length; return str.Substring(start, stop - start); } } }