結果
問題 | No.721 Die tertia (ディエ・テルツィア) |
ユーザー | funakoshi |
提出日時 | 2019-07-01 11:38:22 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,461 bytes |
コンパイル時間 | 835 ms |
コンパイル使用メモリ | 110,012 KB |
実行使用メモリ | 26,176 KB |
最終ジャッジ日時 | 2024-07-08 10:30:31 |
合計ジャッジ時間 | 2,039 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,168 KB |
testcase_01 | AC | 24 ms
23,916 KB |
testcase_02 | AC | 25 ms
25,792 KB |
testcase_03 | WA | - |
testcase_04 | AC | 23 ms
23,912 KB |
testcase_05 | WA | - |
testcase_06 | AC | 25 ms
24,000 KB |
testcase_07 | WA | - |
testcase_08 | AC | 24 ms
25,920 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 24 ms
24,160 KB |
testcase_12 | WA | - |
testcase_13 | AC | 24 ms
24,040 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 23 ms
22,064 KB |
testcase_17 | AC | 25 ms
23,780 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 23 ms
24,264 KB |
コンパイルメッセージ
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 yukicoderTest { class Program { static void Main(string[] args) { string[] ymd = Console.ReadLine().Split('/'); int year = int.Parse(ymd[0]); int month = int.Parse(ymd[1]); int day = int.Parse(ymd[2]); day += 2; if (month == 1 && day > 31 || month == 3 && day > 31 || month == 5 && day > 31 || month == 7 && day > 31 || month == 8 && day > 31 || month == 10 && day > 31 || month == 12 && day > 31) { month++; day = 1; if(month>12) { year++; month = 1; } } else if (month == 4 && day > 30 || month == 6 && day > 30 || month == 9 && day > 30 || month == 11 && day > 30) { month++; day = 2; } else if(month==2&&year%4==0) { if (day > 29) { month++; day = 1; } } else if(month==2&&day>28) { month++; day = 2; } Console.WriteLine("{0:00}"+"/"+ "{1:00}" + "/" + "{2:00}", year, month, day); } } }