結果
問題 | No.188 HAPPY DAY |
ユーザー | oldlevin |
提出日時 | 2020-02-20 09:41:05 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 17 ms / 1,000 ms |
コード長 | 672 bytes |
コンパイル時間 | 985 ms |
コンパイル使用メモリ | 103,296 KB |
実行使用メモリ | 17,024 KB |
最終ジャッジ日時 | 2024-10-08 18:44:00 |
合計ジャッジ時間 | 1,170 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; using static System.Console; public class hello{ public static void Main(){ //No.188 HAPPY DAY X月Y日についてYの数字和がXと等しいとき int[] d = {0,31,28,31,30,31,30,31,31,30,31,30,31}; var sum =0; for(int m=1;m<d.Length;m++ ){ for(int j=1;j<=d[m];j++){ var h = (int)(j/10) ; var t = j-h*10; if(m == (h+t)) { sum++; //WriteLine(m + " " + h + " " + t); } } } WriteLine(sum); } }