結果

問題 No.598 オーバーフローファンタジー
ユーザー kcz146kcz146
提出日時 2017-11-27 18:57:05
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 22,784 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 01:58:38
合計ジャッジ時間 964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます
コンパイルメッセージ
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-1)/a;
unsigned int B=((1UL << (n-1))+b-1-x)/b;
printf("%d\n", A<B ? A : B);
}
0