結果
問題 | No.2194 兄弟の掛け引き |
ユーザー | keisuke6 |
提出日時 | 2023-01-20 22:30:21 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 1,000 ms |
コード長 | 308 bytes |
コンパイル時間 | 2,398 ms |
コンパイル使用メモリ | 202,604 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 10:26:56 |
合計ジャッジ時間 | 2,770 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int a,b,c; cin>>a>>b>>c; vector<int> S={}; for(int i=1;i<=1e6;i++){ int x = a*i; if(x > b) x -= b; if(x == c) S.push_back(i); } for(auto x:S) cout<<x<<endl; if(S.size() == 0) cout<<-1<<endl; }