結果
問題 | No.2562 数字探しゲーム(緑以下コンver.) |
ユーザー | miiitomi |
提出日時 | 2023-12-02 15:13:32 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 542 bytes |
コンパイル時間 | 2,259 ms |
コンパイル使用メモリ | 201,224 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-19 21:30:48 |
合計ジャッジ時間 | 3,060 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 9 WA * 1 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; void solve() { ll M; cin >> M; vector<ll> d(10, 0); for (int i = 1; i <= 9; i++) cin >> d[i]; ll s = 0; for (int i = 1; i <= 9; i++) { for (int k = 0; k < d[i]; k++) { s = s*10 + i; } } s *= (ll)1e+9; if (s % M == 0) cout << s << endl; else { ll a = M - (s % M); s += a; cout << s << endl; } } int main() { int T; cin >> T; for (int t = 0; t < T; t++) solve(); }