結果
| 問題 | No.2842 Birthday |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-04-02 11:42:58 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 120 bytes |
| 記録 | |
| コンパイル時間 | 1,143 ms |
| コンパイル使用メモリ | 21,280 KB |
| 実行使用メモリ | 20,476 KB |
| 最終ジャッジ日時 | 2026-08-17 12:55:55 |
| 合計ジャッジ時間 | 5,331 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 12 |
ソースコード
def age(M, D): if M >= 9 or (M == 8 and D >=22): print(24) else: print(23) M,D = map(int, input(). split()) age()