結果
| 問題 | No.338 アンケート機能 |
| コンテスト | |
| ユーザー |
taba
|
| 提出日時 | 2016-04-14 21:06:42 |
| 言語 | PyPy2 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 200 bytes |
| 記録 | |
| コンパイル時間 | 150 ms |
| コンパイル使用メモリ | 77,344 KB |
| 最終ジャッジ日時 | 2025-12-03 20:19:28 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 RE * 9 |
ソースコード
A,B=map(int,raw_input().split()) t=[] for i in range(100): for j in range(100): if i+j!=0: t+=[[int(i*100./(i+j)+0.5),int(j*100./(i+j)+0.5),i+j]] print min(i[2]for i in t if i[0]==A and i[1]==B)
taba