結果
問題 | No.1915 Addition |
ユーザー | kpinkcat |
提出日時 | 2023-09-21 10:29:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 609 bytes |
コンパイル時間 | 2,130 ms |
コンパイル使用メモリ | 201,692 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-07 04:34:34 |
合計ジャッジ時間 | 5,862 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <bits/stdc++.h> #include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> #include<string> using ll = long long; using namespace std; int main() { ll t, a, b, j; string n; cin >> t; for (ll i = 0; i < t; i++) { cin >> n; j = stoll(n); while (j < 1e18){ a = stoll(n) + j; b = stoll(n)*pow(10, to_string(j).size()) + j; if (!(b%a)){ cout << j << endl; break; } else j += stoll(n); } } }