結果
| 問題 |
No.2533 A⇒B問題
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 22:01:15 |
| 言語 | Fortran (gFortran 14.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 349 bytes |
| コンパイル時間 | 1,582 ms |
| コンパイル使用メモリ | 30,848 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-26 01:31:58 |
| 合計ジャッジ時間 | 2,551 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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