結果
問題 | No.1915 Addition |
ユーザー | atjh16 |
提出日時 | 2022-08-12 18:31:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 306 bytes |
コンパイル時間 | 2,117 ms |
コンパイル使用メモリ | 200,740 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-22 21:24:03 |
合計ジャッジ時間 | 5,963 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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> using namespace std; int t, n; int main() { cin >> t; for (int i = 0; i < t; i++) { cin >> n; for (int j = 1; ; j++) { int a = n + j; int b = 1; while (b <= j) b *= 10; b = n * b + j; if (b % a == 0) { cout << j << endl; break; } } } }