結果
| 問題 | No.2842 Birthday |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-30 01:31:51 |
| 言語 | Fortran (gFortran 16.1.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 0 ms / 2,000 ms |
| + 973µs | |
| コード長 | 231 bytes |
| 記録 | |
| コンパイル時間 | 2,382 ms |
| コンパイル使用メモリ | 36,992 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-19 07:34:18 |
| 合計ジャッジ時間 | 3,194 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
program yukicoder_2842 use, intrinsic :: iso_fortran_env implicit none integer(int32) :: m, d read(input_unit, *) m, d write(output_unit, '(i0)') merge(23, 24, m < 8 .or. (m == 8 .and. d < 22)) end program yukicoder_2842