結果
問題 |
No.169 何分かかるの!?
|
ユーザー |
|
提出日時 | 2017-08-06 17:34:09 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 168 bytes |
コンパイル時間 | 415 ms |
コンパイル使用メモリ | 53,844 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 23:32:52 |
合計ジャッジ時間 | 1,216 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
#include <iostream> int main(){ for(int num1, num2; std::cin >> num1 >> num2; ) std::cout << num2 * 100 / (100 - num1) << std::endl; return 0; }