結果
| 問題 |
No.188 HAPPY DAY
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-03-25 02:13:52 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 371 bytes |
| コンパイル時間 | 219 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 9,984 KB |
| 最終ジャッジ日時 | 2025-01-01 19:18:45 |
| 合計ジャッジ時間 | 802 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
for m in range(1,13):
for ten in range(10):
one=m-ten
dey=ten*10+one
if one>=0 and one<10 :
if (m in[1,3,5,7,8,10,12]) and dey<=31:
print(m,"月",dey,"日")
elif(m==2) and dey<=28:
print(m,"月",dey,"日")
elif dey<=30:
print(m,"月",dey,"日")