結果
問題 |
No.169 何分かかるの!?
|
ユーザー |
![]() |
提出日時 | 2017-07-11 22:32:10 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 110 bytes |
コンパイル時間 | 795 ms |
コンパイル使用メモリ | 27,392 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-07 15:08:34 |
合計ジャッジ時間 | 1,564 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 21 WA * 1 |
コンパイルメッセージ
main.c:2:1: warning: return type defaults to 'int' [-Wimplicit-int] 2 | main(){ | ^~~~
ソースコード
#include<stdio.h> main(){ int K,S; scanf("%d%d",&K,&S); printf("%d\n",(int)(1.*100/(100-K)*S)); }