結果

問題 No.188 HAPPY DAY
ユーザー Sttashe EgnmSttashe Egnm
提出日時 2024-02-25 00:10:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 1,000 ms
コード長 172 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 53,460 KB
最終ジャッジ日時 2024-02-25 00:10:51
合計ジャッジ時間 895 ms
ジャッジサーバーID
(参考情報)
judge16 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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