結果
問題 | 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_2533use, intrinsic :: iso_fortran_envimplicit noneinteger(int32) :: a, binteger(int32) :: dread(input_unit, *) a, bdo d = 0, 31if (btest(a, d) .and. .not. btest(b, d)) thenwrite(output_unit, '(a)') "No"stopend ifend dowrite(output_unit, '(a)') "Yes"end program yukicoder_2533