結果
| 問題 | No.2533 A⇒B問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 22:01:15 |
| 言語 | Fortran (gFortran 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 349 bytes |
| 記録 | |
| コンパイル時間 | 901 ms |
| コンパイル使用メモリ | 35,832 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-13 04:22:19 |
| 合計ジャッジ時間 | 1,904 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
program yukicoder_2533
use, intrinsic :: iso_fortran_env
implicit none
integer(int32) :: a, b
integer(int32) :: d
read(input_unit, *) a, b
do d = 0, 31
if (btest(a, d) .and. .not. btest(b, d)) then
write(output_unit, '(a)') "No"
stop
end if
end do
write(output_unit, '(a)') "Yes"
end program yukicoder_2533