結果
問題 | No.2437 Fragile Multiples of 11 |
ユーザー | ebi_fly |
提出日時 | 2023-08-12 01:59:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 892 bytes |
コンパイル時間 | 2,233 ms |
コンパイル使用メモリ | 204,128 KB |
実行使用メモリ | 13,952 KB |
最終ジャッジ日時 | 2024-11-18 22:06:47 |
合計ジャッジ時間 | 72,599 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
8,448 KB |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 2 ms
10,496 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 2 ms
8,448 KB |
testcase_18 | AC | 2 ms
8,448 KB |
testcase_19 | AC | 2 ms
10,496 KB |
testcase_20 | AC | 2 ms
8,448 KB |
testcase_21 | AC | 1 ms
8,448 KB |
testcase_22 | AC | 2 ms
8,448 KB |
testcase_23 | AC | 2 ms
8,448 KB |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/modint> #define rep(i,s,n) for(int i = int(s); i < int(n); i++) using i64 = std::int64_t; using mint = atcoder::modint998244353; int main() { int n; int x; std::cin >> n >> x; mint ans = 0; rep(i,11,x+1) { if(i % 11 != 0) continue; std::vector<int> p; { int ret = i; while(ret > 0) { p.emplace_back(ret % 10); ret /= 10; } std::reverse(p.begin(), p.end()); } int sz = p.size(); bool is_ok = true; rep(j,0,sz) { int now = 0; rep(k,0,sz) { if(k == j) continue; now = now * 10 + p[k]; now %= 11; } is_ok &= now != 0; } if(is_ok) ans++; } std::cout << ans.val() << '\n'; }