結果
問題 | No.338 アンケート機能 |
ユーザー |
|
提出日時 | 2016-11-24 18:05:03 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 282 bytes |
コンパイル時間 | 1,504 ms |
コンパイル使用メモリ | 165,444 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 10:36:03 |
合計ジャッジ時間 | 2,396 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; signed main(){ int A, B; cin >> A >> B; for( int d = 1; ; ++d ) for( int i = 0; i <= d; ++i ) if( ( 100 * i + d / 2 ) / d == A and ( 100 * ( d - i ) + d / 2 ) / d == B ) cout << d << endl, exit( 0 ); return 0; }