Submission #19291385


Source Code Expand

// #pragma GCC target("avx")  // CPU 処理並列化
// #pragma GCC optimize("O3")  // CPU 処理並列化
// #pragma GCC optimize("unroll-loops")  // 条件処理の呼び出しを減らす
// #define BEGIN_STACK_EXTEND(size) void * stack_extend_memory_ = malloc(size);void * stack_extend_origin_memory_;char * stack_extend_dummy_memory_ = (char*)alloca((1+(int)(((long long)stack_extend_memory_)&127))*16);*stack_extend_dummy_memory_ = 0;asm volatile("mov %%rsp, %%rbx\nmov %%rax, %%rsp":"=b"(stack_extend_origin_memory_):"a"((char*)stack_extend_memory_+(size)-1024));
// #define END_STACK_EXTEND asm volatile("mov %%rax, %%rsp"::"a"(stack_extend_origin_memory_));free(stack_extend_memory_);

#include<stdio.h>
#include<math.h>
#include<algorithm>
#include<queue>
#include<deque>
#include<stack>
#include<string>
#include<string.h>
#include<vector>
#include<set>
#include<map>
#include<bitset>
#include<stdlib.h>
#include<cassert>
#include<time.h>
#include<bitset>
#include<numeric>
#include<unordered_set>
#include<unordered_map>
#include<complex>
using namespace std;
const long long mod=998244353;
const long long inf=mod*mod;
const long long d2=(mod+1)/2;
const double EPS=1e-11;
const double INF=1e+10;
const double PI=acos(-1.0);
const int C_SIZE = 11100000;
const int UF_SIZE = 3100000;
namespace{
	long long fact[C_SIZE];
	long long finv[C_SIZE];
	long long inv[C_SIZE];
	inline long long Comb(int a,int b){
	 	if(a<b||b<0)return 0;
	 	return fact[a]*finv[b]%mod*finv[a-b]%mod;
	}
	void init_C(int n){
		fact[0]=finv[0]=inv[1]=1;
		for(int i=2;i<n;i++){
			inv[i]=(mod-(mod/i)*inv[mod%i]%mod)%mod;
		}
		for(int i=1;i<n;i++){
			fact[i]=fact[i-1]*i%mod;
			finv[i]=finv[i-1]*inv[i]%mod;
		}
	}
	long long pw(long long a,long long b){
		if(a<0LL)return 0;
		if(b<0LL)return 0;
		long long ret=1;
		while(b){
			if(b%2)ret=ret*a%mod;
			a=a*a%mod;
			b/=2;
		}
		return ret;
	}
	long long pw_mod(long long a,long long b,long long M){
		if(a<0LL)return 0;
		if(b<0LL)return 0;
		long long ret=1;
		while(b){
			if(b%2)ret=ret*a%M;
			a=a*a%M;
			b/=2;
		}
		return ret;
	}
	int pw_mod_int(int a,int b,int M){
		if(a<0)return 0;
		if(b<0)return 0;
		int ret=1;
		while(b){
			if(b%2)ret=(long long)ret*a%M;
			a=(long long)a*a%M;
			b/=2;
		}
		return ret;
	}
	int ABS(int a){return max(a,-a);}
	long long ABS(long long a){return max(a,-a);}
	double ABS(double a){return max(a,-a);}
	int sig(double r) { return (r < -EPS) ? -1 : (r > +EPS) ? +1 : 0; }
	int UF[UF_SIZE];
	void init_UF(int n){
		for(int i=0;i<n;i++)UF[i]=-1;
	}
	int FIND(int a){
		if(UF[a]<0)return a;
		return UF[a]=FIND(UF[a]);
	}
	void UNION(int a,int b){
		a=FIND(a);b=FIND(b);if(a==b)return;
		if(UF[a]>UF[b])swap(a,b);
		UF[a]+=UF[b];UF[b]=a;
	}
}
// ここから編集しろ
#include <atcoder/math>
using namespace atcoder;
int main(){
	int T;scanf("%d",&T);
	while(T--){
		long long a,b,c,d;
		scanf("%lld%lld%lld%lld",&a,&b,&c,&d);
      if(b==0){
        printf("%d\n",(d-a-1)/c);
        continue;
      }
		long long ret=0;
		long long JR=(d-1)/(c-b);
		long long N=(a+JR*b)/d+1;
		long long tmp=floor_sum(N,b,d,d-a)-floor_sum(N,c,d,d-a-1);
		ret=(d*N-a)/b-tmp;
      //printf("%d %d\n",JR,N);
		printf("%lld\n",ret);
	}
}

Submission Info

Submission Time
Task E - Simple Math 3
User tozangezan
Language C++ (GCC 9.2.1)
Score 800
Code Size 3330 Byte
Status AC
Exec Time 29 ms
Memory 1728 KiB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:114:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘long long int’ [-Wformat=]
  114 |         printf("%d\n",(d-a-1)/c);
      |                 ~^    ~~~~~~~~~
      |                  |           |
      |                  int         long long int
      |                 %lld
./Main.cpp:109:13: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  109 |  int T;scanf("%d",&T);
      |        ~~~~~^~~~~~~~~
./Main.cpp:112:8: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  112 |   scanf("%lld%lld%lld%lld",&a,&b,&c,&d);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./Main.cpp: At global scope:
./Main.cpp:99:7: warning: ‘void {anonymous}::UNION(int, int)’ defined but not used [-Wunused-function]
   99 |  void UNION(int a,int b){
      |       ^~~~~
./Main.cpp:92:7: warning: ‘void {anonymous}::init_UF(int)’ defined but not used [-Wunused-function]
   92 |  void init_UF(int n){
      |       ^~~~~~~
./Main.cpp:90:6: warning: ‘int {anonymous}::sig(double)’ defined but not used [-Wunused-function]
   90 |  int sig(double r) { return (r < -EPS) ? -1 : (r > +EPS) ? +1 : 0; }
      |      ^~~
./Main.cpp:89:9: warning: ‘double {anonymous}::ABS(double)’ defined but not used [-Wunused-function]
   89 |  double ABS(double a){return max(a,-a);}
      |         ^~~
./Main.cpp:88:12: warning: ‘long long int {anonymous}::ABS(long long int)’ defined but not used [-Wunused-function]
   88 |  long long ABS(long long a){return max(a,-a);}
      |            ^~~
./Main.cpp:87:6: warning: ‘int {anonymous}::ABS(int)’ defined but not used [-Wunused-function]
   87 |  int ABS(int a){return max(a,-a);}
      |      ^~~
./Main.cpp:76:6: warning: ‘int {anonymous}::pw_mod_int(int, int, int)’ defined but not used [-Wunused-function]
   76 |  int pw_mod_int(i...

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 800 / 800
Status AC
AC × 21
Set Name Test Cases
Sample
All example_00, max_random_00, max_random_01, max_random_02, max_random_03, max_random_04, max_random_05, max_random_06, max_random_07, max_random_08, max_random_09, small_00, small_01, small_02, small_03, small_04, small_bc_00, small_bc_01, small_bc_02, small_bc_03, small_bc_04
Case Name Status Exec Time Memory
example_00 AC 4 ms 1692 KiB
max_random_00 AC 14 ms 1624 KiB
max_random_01 AC 13 ms 1668 KiB
max_random_02 AC 13 ms 1648 KiB
max_random_03 AC 12 ms 1652 KiB
max_random_04 AC 16 ms 1728 KiB
max_random_05 AC 15 ms 1728 KiB
max_random_06 AC 13 ms 1724 KiB
max_random_07 AC 14 ms 1656 KiB
max_random_08 AC 15 ms 1728 KiB
max_random_09 AC 17 ms 1688 KiB
small_00 AC 6 ms 1728 KiB
small_01 AC 9 ms 1660 KiB
small_02 AC 8 ms 1676 KiB
small_03 AC 9 ms 1680 KiB
small_04 AC 15 ms 1684 KiB
small_bc_00 AC 26 ms 1692 KiB
small_bc_01 AC 29 ms 1668 KiB
small_bc_02 AC 27 ms 1668 KiB
small_bc_03 AC 25 ms 1660 KiB
small_bc_04 AC 28 ms 1676 KiB