結果

問題 No.598 オーバーフローファンタジー
ユーザー kcz146
提出日時 2017-11-27 18:56:44
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 178 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 22,400 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-27 11:10:51
合計ジャッジ時間 1,397 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 13 WA * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:6: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    4 | scanf("%d%d%d%d",&n,&x,&a,&b);
      | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>
int main(void) {
unsigned int n,x,a,b;
scanf("%d%d%d%d",&n,&x,&a,&b);
unsigned int A=x/a;
unsigned int B=((1UL << (n-1))+b-1-x)/b;
printf("%d\n", A<B ? A : B);
}
0