結果
問題 | No.2455 Numbers Dictionary |
ユーザー | kotatsugame |
提出日時 | 2023-09-01 21:50:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 186 ms / 2,000 ms |
コード長 | 723 bytes |
コンパイル時間 | 787 ms |
コンパイル使用メモリ | 67,072 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 03:34:57 |
合計ジャッジ時間 | 3,291 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 20 ms
5,376 KB |
testcase_03 | AC | 32 ms
5,376 KB |
testcase_04 | AC | 55 ms
5,376 KB |
testcase_05 | AC | 25 ms
5,376 KB |
testcase_06 | AC | 105 ms
5,376 KB |
testcase_07 | AC | 186 ms
5,376 KB |
testcase_08 | AC | 23 ms
5,376 KB |
testcase_09 | AC | 105 ms
5,376 KB |
testcase_10 | AC | 93 ms
5,376 KB |
testcase_11 | AC | 114 ms
5,376 KB |
testcase_12 | AC | 30 ms
5,376 KB |
testcase_13 | AC | 107 ms
5,376 KB |
testcase_14 | AC | 49 ms
5,376 KB |
testcase_15 | AC | 91 ms
5,376 KB |
testcase_16 | AC | 8 ms
5,376 KB |
testcase_17 | AC | 109 ms
5,376 KB |
testcase_18 | AC | 10 ms
5,376 KB |
testcase_19 | AC | 9 ms
5,376 KB |
testcase_20 | AC | 107 ms
5,376 KB |
testcase_21 | AC | 107 ms
5,376 KB |
testcase_22 | AC | 57 ms
5,376 KB |
ソースコード
#include<iostream> #include<cassert> using namespace std; string N,K; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int T;cin>>T; for(;T--;) { cin>>N>>K; long ans=K.size(); for(int i=0;i<K.size();i++) {//diff on i for(int c=i==0?1:0;c<K[i]-'0';c++) {//i-th digit = c long p=1; for(int j=0;i+1+j<N.size();j++) { ans+=p; p*=10; } if(i+1<=N.size()) { string L=K.substr(0,i); L+=c+'0'; string R0=string(N.size()-i-1,'0'),R9=string(N.size()-i-1,'9'); if(L+R0>N); else if(L+R9<=N)ans+=p; else { long t=0; for(int j=i+1;j<N.size();j++)t=t*10+(N[j]-'0'); ans+=t+1; } } } } cout<<ans<<"\n"; } }