結果
問題 | No.188 HAPPY DAY |
ユーザー | ゆうP |
提出日時 | 2024-03-09 12:09:43 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 409 bytes |
コンパイル時間 | 13,802 ms |
コンパイル使用メモリ | 220,864 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 21:13:34 |
合計ジャッジ時間 | 12,320 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ソースコード
// No.188 HAPPY DAY package main import ( "fmt" "strconv" "time" ) func main() { start := time.Date(2015, 1, 1, 0, 0, 0, 0, time.UTC) var ans int = 0 for i := 0; i < 365; i++ { _, m, d := start.AddDate(0, 0, i).Date() d1, _ := strconv.Atoi(string(fmt.Sprintf("%02d", d)[0])) d2, _ := strconv.Atoi(string(fmt.Sprintf("%02d", d)[1])) if int(m) == (d1 + d2) { ans++ } } fmt.Println(ans) }