結果
問題 | No.1156 Nada Picnic 2 |
ユーザー | Kome_soudou |
提出日時 | 2022-11-09 01:58:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,070 bytes |
コンパイル時間 | 1,390 ms |
コンパイル使用メモリ | 169,836 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 09:18:03 |
合計ジャッジ時間 | 1,891 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 9 ms
6,944 KB |
testcase_02 | AC | 26 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; if(n == 1) cout << 1891 << endl; else if(n == 2) { vector<int> p(10); for(int i = 0; i < 10; i++) p[i] = i; int a, b, c; do { if(p[0] == 0 || p[3] == 0 || p[7] == 0) continue; a = p[0] * 1000 + p[0] * 100 + p[1] * 10 + p[2]; b = p[3] * 1000 + p[4] * 100 + p[5] * 10 + p[6]; c = p[7] * 10000 + p[8] * 1000 + p[1] * 100 + p[2] * 10 + p[9]; if(a + b == c) { cout << c << endl; return 0; } } while(next_permutation(p.begin(), p.end())); } else { vector<int> p(10); for(int i = 0; i < 10; i++) p[i] = i; int a, b, c; do { if(p[0] == 0 || p[6] == 0 || p[1] == 0) continue; a = p[0] * 100000 + p[1] * 10000 + p[2] * 1000 + p[3] * 100 + p[4] * 10 + p[5]; b = p[6] * 10000 + p[3] * 1000 + p[5] * 100 + p[7] * 10 + p[8]; c = p[1] * 100000 + p[3] * 10000 + p[9] * 1000 + p[4] * 100 + p[3] * 10 + p[9]; if(a + b == c) { cout << c << endl; return 0; } } while(next_permutation(p.begin(), p.end())); } return 0; }