結果
| 問題 |
No.1185 完全な3の倍数
|
| コンテスト | |
| ユーザー |
ぷら
|
| 提出日時 | 2020-08-22 13:34:11 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 762 bytes |
| コンパイル時間 | 1,570 ms |
| コンパイル使用メモリ | 169,612 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-15 07:48:43 |
| 合計ジャッジ時間 | 2,752 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 WA * 12 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define int long long
typedef pair<int,int> P;
int INF = 1e16+7;
int mod = 998244353;
int dx[4] = {1, 0, -1, 0};
int dy[4] = {0, 1, 0, -1};
signed main() {
int N;
cin >> N;
int cnt = 0;
for(int i = 10; i <= min(99LL,N); i++) {
if((i/10+i%10)%3 == 0 && i%3 == 0) {
cnt++;
}
}
string S = to_string(N);
for(int i = 2; i < S.size()-1; i++) {
cnt += 3*pow(4,i);
}
if(S.size() >= 3) {
cnt += ((S[0]-'0')-1)/3*pow(4,S.size()-1);
}
if((S[0]-'0')%3 == 0 && S.size() >= 3) {
int res = 1;
for(int i = 1; i < S.size(); i++) {
res *= 1+(S[i]-'0')/3;
}
cnt += res;
}
cout << cnt << endl;
}
ぷら