結果
問題 | No.1003 サイコロの実装 (1) |
ユーザー | itt828 |
提出日時 | 2020-03-10 16:54:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 3,698 bytes |
コンパイル時間 | 1,227 ms |
コンパイル使用メモリ | 116,372 KB |
実行使用メモリ | 27,120 KB |
最終ジャッジ日時 | 2024-11-15 23:26:00 |
合計ジャッジ時間 | 3,117 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
26,996 KB |
testcase_01 | AC | 28 ms
26,868 KB |
testcase_02 | AC | 28 ms
25,140 KB |
testcase_03 | AC | 29 ms
25,132 KB |
testcase_04 | AC | 29 ms
27,020 KB |
testcase_05 | AC | 29 ms
25,104 KB |
testcase_06 | AC | 28 ms
25,112 KB |
testcase_07 | AC | 29 ms
27,120 KB |
testcase_08 | AC | 28 ms
23,092 KB |
testcase_09 | AC | 29 ms
24,852 KB |
testcase_10 | AC | 29 ms
25,112 KB |
testcase_11 | AC | 28 ms
25,236 KB |
testcase_12 | AC | 28 ms
24,852 KB |
testcase_13 | AC | 29 ms
24,980 KB |
testcase_14 | AC | 29 ms
27,116 KB |
testcase_15 | AC | 28 ms
26,856 KB |
testcase_16 | AC | 28 ms
26,892 KB |
testcase_17 | AC | 29 ms
26,992 KB |
testcase_18 | AC | 28 ms
25,084 KB |
testcase_19 | AC | 29 ms
25,076 KB |
testcase_20 | AC | 28 ms
24,724 KB |
testcase_21 | AC | 28 ms
24,980 KB |
testcase_22 | AC | 29 ms
26,856 KB |
testcase_23 | AC | 29 ms
24,728 KB |
testcase_24 | AC | 29 ms
24,880 KB |
testcase_25 | AC | 28 ms
25,112 KB |
testcase_26 | AC | 29 ms
25,112 KB |
testcase_27 | AC | 29 ms
24,852 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 System.Diagnostics; using System.Text; using System.Threading.Tasks; using System.Numerics; using System.IO; using static System.Math; using static Math2; using static io; class Program { static void Main(string[] args) { var wrong_answer = new wrong_answer(); wrong_answer.Solve(); } } public class wrong_answer { const int INF = 1 << 29; const long INFL = 1L << 60; const int MOD = 1000000007; const int MOD2 = 998244353; public void Solve() { yn(int1 % 6 == 0); } } public static class Math2 { public static long pow(long i, long n, long MOD = 1000000007) { long res = 1; while (n > 0) { if ((n & 1) != 0) res = res * i % MOD; i = i * i % MOD; n >>= 1; } return res; } public static int pow(int i, int n, int MOD = 1000000007) { int res = 1; while (n > 0) { if ((n & 1) != 0) res = res * i % MOD; i = i * i % MOD; n >>= 1; } return res; } public static long gcd(long i, long y) { while (y != 0) { var r = i % y; i = y; y = r; } return i; } public static long lcm(long i, long y) { return i * y / gcd(i, y); } public static BigInteger bgcd(BigInteger i, BigInteger y) { while (y != 0) { var r = i % y; i = y; y = r; } return i; } public static BigInteger blcm(BigInteger i, BigInteger y) { return i * y / bgcd(i, y); } public static Dictionary<long, int> primefactorization(long N) { var ret = new Dictionary<long, int>(); for (long i = 2; i * i <= N; ++i) { int cnt = 0; while (N % i == 0) { cnt++; N /= i; } if (cnt != 0) ret[i] = cnt; } if (N >= 2) ret[N] = 1; return ret; } public static List<long> divisorenumrate(long N) { var ret = new List<long>(); for (long i = 1; i * i <= N; ++i) { if (N % i == 0) { ret.Add(i); ret.Add(N / i); } } return ret; } public static void swap<T>(ref T a, ref T b) { var i = a; a = b; b = i; } public static void chmin<T>(ref T a, T b) where T : IComparable { if (a.CompareTo(b) > 0) a = b; } public static void chmax<T>(ref T a, T b) where T : IComparable { if (a.CompareTo(b) < 0) a = b; } } public static class io { //in public static string str => Console.ReadLine(); public static string[] strm => str.Split(' '); public static long[] longm => strm.Select(long.Parse).ToArray(); public static int[] intm => strm.Select(int.Parse).ToArray(); public static char[] charm => str.ToArray(); public static double[] doublem => strm.Select(double.Parse).ToArray(); public static long long1 => longm[0]; public static int int1 => intm[0]; public static char char1 => charm[0]; public static double double1 => doublem[0]; public static void write(string a) => Console.WriteLine(a); public static void write(params object[] i) => write(string.Join(" ", i)); public static void write<T>(IEnumerable<T> a) => write(string.Join(" ", a)); public static void yn(bool i) { if (i) write("Yes"); else write("No"); } }