結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,968 KB
testcase_01 AC 4 ms
11,000 KB
testcase_02 AC 4 ms
10,924 KB
testcase_03 AC 195 ms
11,888 KB
testcase_04 AC 195 ms
11,856 KB
testcase_05 AC 40 ms
11,264 KB
testcase_06 AC 29 ms
11,148 KB
testcase_07 AC 134 ms
11,788 KB
testcase_08 AC 94 ms
11,656 KB
testcase_09 AC 53 ms
11,292 KB
testcase_10 AC 149 ms
11,604 KB
testcase_11 AC 142 ms
11,692 KB
testcase_12 AC 86 ms
11,332 KB
testcase_13 AC 29 ms
11,120 KB
testcase_14 AC 128 ms
11,816 KB
testcase_15 AC 37 ms
11,012 KB
testcase_16 AC 113 ms
11,352 KB
testcase_17 AC 90 ms
11,488 KB
testcase_18 AC 86 ms
11,320 KB
testcase_19 AC 112 ms
11,824 KB
testcase_20 AC 79 ms
11,448 KB
testcase_21 AC 71 ms
11,432 KB
testcase_22 AC 127 ms
11,648 KB
testcase_23 AC 16 ms
10,844 KB
testcase_24 AC 99 ms
11,600 KB
testcase_25 AC 100 ms
11,800 KB
testcase_26 AC 98 ms
11,876 KB
testcase_27 AC 5 ms
10,836 KB
testcase_28 AC 191 ms
11,820 KB
testcase_29 AC 195 ms
11,676 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[10003][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