結果

問題 No.188 HAPPY DAY
ユーザー Sttashe EgnmSttashe Egnm
提出日時 2024-02-25 00:06:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 155 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 65,924 KB
最終ジャッジ日時 2024-02-25 00:06:55
合計ジャッジ時間 796 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#31th →4/31th
#Feb→ ok
co=1
for month in range(12):
	for day in range(30):
		day_str=str(day)
		if day_str[0]+day_str[1]==month:
			co+=1
			
print(co)
0