結果
| 問題 | No.2533 A⇒B問題 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-11-10 22:01:15 |
| 言語 | Fortran (gFortran 16.1.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 54µs | |
| コード長 | 349 bytes |
| 記録 | |
| コンパイル時間 | 1,368 ms |
| コンパイル使用メモリ | 36,992 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-09-04 11:46:43 |
| 合計ジャッジ時間 | 2,797 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_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