代码搜索:Power

找到约 10,000 项符合「Power」的源代码

代码结果 10,000
www.eeworm.com/read/452050/7450811

cpp 3067631_ac_655ms_160k.cpp

#include #include #include __int64 num[1000]; __int64 cnt[1000]; __int64 mod; __int64 power(__int64 p,__int64 n) { if (n==1) { return p%mod; } if
www.eeworm.com/read/452050/7450812

cpp 3067471_wa.cpp

#include #include #include __int64 num[1000]; __int64 cnt[1000]; __int64 power(__int64 p,__int64 n) { if (n==1) { return p%9901; } if (n%2==0) {
www.eeworm.com/read/452050/7450813

cpp 3067570_wa.cpp

#include #include #include __int64 num[1000]; __int64 cnt[1000]; __int64 power(__int64 p,__int64 n) { if (n==1) { return p%9901; } if (n%2==0) {
www.eeworm.com/read/452050/7450814

cpp 3067473_wa.cpp

#include #include #include __int64 num[1000]; __int64 cnt[1000]; __int64 power(__int64 p,__int64 n) { if (n==1) { return p%9901; } if (n%2==0) {
www.eeworm.com/read/452050/7451426

cc 3237118_ac_47ms_304k.cc

#include #include double c[21][21]; double p; double cc[21]; double power(double q,int n) { if(n==0) return 1.00; if(n%2==0) return power(q*q,n/2); else r
www.eeworm.com/read/452050/7451452

cpp 3657103_ac_16ms_176k.cpp

#include __int64 mod; __int64 power(__int64 a, __int64 p) { if (p == 1) { return a % mod; } if (p % 2 == 0) { return power(a * a % mod, p / 2) % mod; } else {
www.eeworm.com/read/452050/7451770

cpp 3802842_ac_1469ms_7956k.cpp

#include #include #pragma comment(linker, "/STACK:16777216") int m, k; struct node { int num[100][100]; }b, a; node multi(node a, node b) { int i, j, l; node t
www.eeworm.com/read/452050/7451907

cc 3198002_re.cc

#include #include using namespace std; int num[101][2001]; int ans[100000], cnt; int m, n, t; int power(int a,int b) { if(b==1) return a; return a*power(a,b-1
www.eeworm.com/read/452050/7451908

cc 3197999_re.cc

#include #include using namespace std; int num[101][2001]; int ans[10000], cnt; int m, n, t; int power(int a,int b) { if(b==1) return a; return a*power(a,b-1)
www.eeworm.com/read/452028/7452018

pin traffic.pin

-- Copyright (C) 1991-2005 Altera Corporation -- Your use of Altera Corporation's design tools, logic functions -- and other software and tools, and its AMPP partner logic -- functions,