結果
問題 | No.188 HAPPY DAY |
ユーザー | mkanenobu |
提出日時 | 2018-03-24 19:28:35 |
言語 | Nim (2.0.2) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 267 bytes |
コンパイル時間 | 2,362 ms |
コンパイル使用メモリ | 65,948 KB |
実行使用メモリ | 6,812 KB |
最終ジャッジ日時 | 2024-06-30 05:31:22 |
合計ジャッジ時間 | 2,675 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport] /home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'math' [UnusedImport]
ソースコード
import sequtils, strutils, math var res = 0 days:int for i in 1..12: if i.in([4,6,9,11]): days = 30 elif i == 2: days = 28 else: days = 31 for j in 1..days: if i == (j div 10) + parseInt(($j)[^1..^1]): res += 1 echo res