結果
問題 |
No.2945 Namiki Secondary School
|
ユーザー |
![]() |
提出日時 | 2025-01-17 17:01:42 |
言語 | Fortran (gFortran 14.2.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 213 bytes |
コンパイル時間 | 1,546 ms |
コンパイル使用メモリ | 37,376 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2025-01-17 17:01:46 |
合計ジャッジ時間 | 3,229 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 23 |
ソースコード
program Main implicit none integer N read *, N if (N < 1984) then print *, N else if (N < 2008) then print *, N else print *, N end if end program Main