結果
問題 |
No.169 何分かかるの!?
|
ユーザー |
![]() |
提出日時 | 2019-02-25 13:52:18 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 167 bytes |
コンパイル時間 | 597 ms |
コンパイル使用メモリ | 53,592 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 00:45:27 |
合計ジャッジ時間 | 1,500 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | AC * 2 WA * 20 |
ソースコード
#include <iostream> int main(){ int K; int S; int T; std::cin >> K >> S; T = S / (1 - (K / 100)); std::cout << T << std::endl; return 0; }