結果
| 問題 | No.338 アンケート機能 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-11-24 18:03:08 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 282 bytes |
| 記録 | |
| コンパイル時間 | 1,245 ms |
| コンパイル使用メモリ | 183,496 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-05-21 16:50:15 |
| 合計ジャッジ時間 | 2,652 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 4 WA * 24 |
ソースコード
#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 - 1 ) / d == A and ( 100 * ( d - i ) + d - 1 ) / d == B )
cout << d << endl, exit( 0 );
return 0;
}