結果

問題 No.260 世界のなんとか3
ユーザー C7C7LLC7C7LL
提出日時 2018-07-26 13:51:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 769 bytes
コンパイル時間 1,410 ms
コンパイル使用メモリ 160,004 KB
実行使用メモリ 11,944 KB
最終ジャッジ日時 2024-07-01 03:17:58
合計ジャッジ時間 4,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,912 KB
testcase_01 AC 4 ms
10,668 KB
testcase_02 AC 6 ms
10,924 KB
testcase_03 AC 194 ms
11,944 KB
testcase_04 AC 195 ms
11,896 KB
testcase_05 AC 41 ms
11,356 KB
testcase_06 AC 28 ms
11,108 KB
testcase_07 AC 132 ms
11,744 KB
testcase_08 AC 93 ms
11,736 KB
testcase_09 AC 54 ms
11,376 KB
testcase_10 AC 149 ms
11,716 KB
testcase_11 AC 140 ms
11,876 KB
testcase_12 AC 86 ms
11,484 KB
testcase_13 AC 28 ms
10,912 KB
testcase_14 AC 127 ms
11,780 KB
testcase_15 AC 38 ms
11,088 KB
testcase_16 AC 112 ms
11,640 KB
testcase_17 AC 89 ms
11,408 KB
testcase_18 AC 86 ms
11,240 KB
testcase_19 AC 111 ms
11,492 KB
testcase_20 AC 79 ms
11,432 KB
testcase_21 AC 70 ms
11,480 KB
testcase_22 AC 127 ms
11,680 KB
testcase_23 AC 16 ms
10,860 KB
testcase_24 AC 99 ms
11,748 KB
testcase_25 AC 99 ms
11,800 KB
testcase_26 WA -
testcase_27 AC 5 ms
10,952 KB
testcase_28 AC 187 ms
11,884 KB
testcase_29 AC 193 ms
11,924 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:23:1: warning: ISO C++ forbids declaration of ‘main’ with no type [-Wreturn-type]
   23 | main(){
      | ^~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define int long long
#define r(i,n) for(int i=0;i<n;i++)
using namespace std;

int dp[10000][2][2][3][8],n,m,sum,p,A,k,M=1e9+7,f;
string s,t;

int dfs(int idx,bool tight=1,bool ok=0,int mod=0,int mod2=0){
  if(idx==s.size())return (ok||mod==0)&&mod2;
  int &res=dp[idx][tight][ok][mod][mod2];
  if(~res)return res;
  res=0;
  int x=s[idx]-'0';
  int r=tight?x:9;
  for(int i=0;i<=r;i++){
    res+=dfs(idx+1,tight&&i==r,ok||i==3,(mod*10+i)%3,(mod2*10+i)%8);
    res%=M;
  }
  return res;
}

main(){
  memset(dp,-1,sizeof(dp));
  cin>>s>>t;
  int A=dfs(0);
  swap(s,t);
  memset(dp,-1,sizeof(dp));
  int B=dfs(0);
  r(i,t.size()){
    sum=(sum*10+(t[i]-'0'))%24;
    if(t[i]=='3')f=1;
  }
  f=(f||sum%3==0)&&(sum%8);
  cout<<(B-A+M+f)%M<<endl;
}
0