結果
問題 | No.188 HAPPY DAY |
ユーザー | abL8ZLsTbF |
提出日時 | 2016-10-15 23:20:05 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 21 ms / 1,000 ms |
コード長 | 264 bytes |
コンパイル時間 | 829 ms |
コンパイル使用メモリ | 108,112 KB |
実行使用メモリ | 23,476 KB |
最終ジャッジ日時 | 2024-06-09 21:41:33 |
合計ジャッジ時間 | 1,250 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Test { public static void Main() { int ans = 0; for (var dt = new DateTime(2015, 1, 1); dt.Year == 2015; dt = dt.AddDays(1)) { if (dt.Day / 10 + dt.Day % 10 == dt.Month) { ++ans; } } Console.WriteLine(ans); } }