結果
| 問題 | No.188 HAPPY DAY |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-21 16:24:43 |
| 言語 | PHP (8.5.9) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 264 bytes |
| 記録 | |
| コンパイル時間 | 3,135 ms |
| コンパイル使用メモリ | 36,744 KB |
| 実行使用メモリ | 37,000 KB |
| 最終ジャッジ日時 | 2026-08-31 03:09:59 |
| 合計ジャッジ時間 | 3,886 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
# coding: utf-8
# Your code here!
lastDay = [31,28,31,30,31,30,31,31,30,31,30,31]
ct = 0
for i in range(1,13):
for j in range(1,lastDay[i-1]+1):
temp1 = i
temp2 = (j // 10) + (j % 10)
if temp1 == temp2:
ct += 1
print(ct)