結果
| 問題 | No.188 HAPPY DAY | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2022-05-26 09:30:19 | 
| 言語 | C#(csc) (csc 3.9.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 26 ms / 1,000 ms | 
| コード長 | 2,127 bytes | 
| コンパイル時間 | 938 ms | 
| コンパイル使用メモリ | 109,976 KB | 
| 実行使用メモリ | 17,536 KB | 
| 最終ジャッジ日時 | 2024-09-20 14:57:08 | 
| 合計ジャッジ時間 | 1,398 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 1 | 
コンパイルメッセージ
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)
        {
 	    string b="";
            int c = 0;
            int d = 0;
            int count = 0;
            for (int i=1;i<12;i++)
            {
                
                if (i==1||i==3||i==5||i==7||i==8||i==10||i==12)
                {
                    for (int j = 1; j <= 31; j++)
                    {
                        b = j.ToString();
                         c = int.Parse(b.Substring(0,1));
                        if (b.Length == 2)
                        {
                             d = int.Parse(b.Substring(1, 1));
                        }
                        if (i == c + d)
                        {
                            count++;
                        }
                        d = 0;
                    }
                }
                else if (i == 4||i==6||i==9||i==11)
                {
                    for (int j = 1; j <= 30; j++)
                    {
                        b = j.ToString();
                        c = int.Parse(b.Substring(0, 1));
                        if (b.Length == 2)
                        {
                            d = int.Parse(b.Substring(1, 1));
                        }
                        if (i == c + d)
                        {
                            count++;
                        }
                        d = 0;
                    }
                }
                else if (i==2)
                {
                    for (int j = 1; j <= 28; j++)
                    {
                        b = j.ToString();
                        c = int.Parse(b.Substring(0, 1));
                        if (b.Length == 2)
                        {
                            d = int.Parse(b.Substring(1, 1));
                        }
                        if (i == c + d)
                        {
                            count++;
                        }
                        d = 0;
                    }
                }
            }
            Console.WriteLine(count);
        }
    }
}
            
            
            
        