結果

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

ソースコード

diff #

#include <bits/stdc++.h>
#define MOD 1000000007LL
using namespace std;
typedef long long ll;
typedef pair<int,int> P;

ll n,x,a,b;

int main(void){
	scanf("%lld",&n);
	scanf("%lld",&x);
	scanf("%lld",&a);
	scanf("%lld",&b);
	ll maxi=1<<(n-1);
	ll ans=(x+a-1LL)/a;
	ll ans2=(maxi-x+b-1LL)/b;
	printf("%lld\n",min(ans,ans2));
	return 0;
}
0