結果
問題 | No.188 HAPPY DAY |
ユーザー | outoforder |
提出日時 | 2017-07-22 01:09:44 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 28 ms / 1,000 ms |
コード長 | 610 bytes |
コンパイル時間 | 979 ms |
コンパイル使用メモリ | 107,392 KB |
実行使用メモリ | 19,328 KB |
最終ジャッジ日時 | 2024-06-09 21:55:21 |
合計ジャッジ時間 | 1,101 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
コンパイルメッセージ
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.Text; using System.Threading.Tasks; namespace No188_2 { class Program { static void Main(string[] args) { var result = Enumerable.Range(0, 370) .Select(i => new DateTime(2015, 1, 1).AddDays(i)) .TakeWhile(date => date.Year == 2015) .Count(date => date.Month == date.Day.ToString("00").ToArray().Select(s => s.ToString()).Select(int.Parse).Sum()); Console.WriteLine(result); } } }