結果
| 問題 |
No.1003 サイコロの実装 (1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-06-07 10:16:34 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 902 bytes |
| コンパイル時間 | 804 ms |
| コンパイル使用メモリ | 106,648 KB |
| 実行使用メモリ | 25,928 KB |
| 最終ジャッジ日時 | 2024-09-21 04:51:34 |
| 合計ジャッジ時間 | 2,198 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 WA * 2 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
namespace yukicoder
{
class Program
{
static void Main(string[] args)
{
int a = int.Parse(Console.ReadLine());
int[] b = new int[6];
int c = 0;
for(int i = 0; i <= a - 1; i++)
{
c=i % 6;
c++;
for(int j = 1; j <= 6; j++)
{
if (c == j)
{
b[j-1]++;
break;
}
}
}
for(int x = 0; x <= 4; x++)
{
if (b[x] != b[x + 1])
{
Console.WriteLine("No");
break;
}else if (x == 3)
{
Console.WriteLine("Yes");
}
}
}
}
}