結果
問題 | No.188 HAPPY DAY |
ユーザー | nakaemon0102 |
提出日時 | 2017-04-12 13:00:45 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 350 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-06-09 21:48:43 |
合計ジャッジ時間 | 636 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ソースコード
import calendar C=0 for i in range(1,12): cal = calendar.month(2015, i) #print(cal) B=int(cal.split()[-1]) #print(B) for j in range(1,B): #print(j) ten=int(j/10) #print(ten) one=j-(ten*10) #print(ten,one) A=ten+one if i==A: #print(i,j) C+=1 print(C)