結果
問題 | No.188 HAPPY DAY |
ユーザー | sjgq5302 |
提出日時 | 2017-07-09 17:07:10 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 75 ms / 1,000 ms |
コード長 | 610 bytes |
コンパイル時間 | 41 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-06-09 21:55:07 |
合計ジャッジ時間 | 577 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
コンパイルメッセージ
Syntax OK
ソースコード
def judge(wmonth, wday, wcnt) #月と日の和が等しいか判定 if wmonth == (wday / 10) + (wday % 10) then wcnt += 1 end return wcnt end cnt = 0 for month in 1..12 do if month == 2 then #2月 for day in 1..28 do cnt = judge(month, day, cnt) end elsif month == 4 or month == 6 or month == 9 or month == 11 then #4月,6月,9月,11月 for day in 1..30 do cnt = judge(month, day, cnt) end else #それ以外の月 for day in 1..31 do cnt = judge(month, day, cnt) end end end puts cnt