結果
問題 | No.1185 完全な3の倍数 |
ユーザー | hangin-svg |
提出日時 | 2021-06-10 07:32:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 698 bytes |
コンパイル時間 | 1,846 ms |
コンパイル使用メモリ | 170,164 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-07 00:34:27 |
合計ジャッジ時間 | 2,816 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 1 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | WA | - |
testcase_41 | AC | 1 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int lim = min(100,n); vector<int> d; int count =0; bool last=true; while(n>0){ d.push_back(n%10); n /= 10; last &= d.back()%3==0; } //for(auto& i : d) cout << i << ' ' ; cout << endl; bool dig = false; for(auto it = d.rbegin(); it != d.rend(); ++it){ count *=4; if(!dig)count += (*it)/3; else count +=3; if(dig && (*it)==0) dig = true; else if((*it)%3!=0) dig = true; else dig = false; } count -= 3; //cout << count << endl; for(int i=10; i<=lim; i++) if(i%3==0 && i%10%3 !=0) count ++; if(last) count ++; cout << count << endl; }