結果

問題 No.169 何分かかるの!?
ユーザー csharpython
提出日時 2023-01-22 11:04:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 112 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 164,628 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-24 15:03:55
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 1 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int c,s;
    cin>>c>>s;
    cout<<100*s/c<<endl;
}
0