結果
問題 | No.169 何分かかるの!? |
ユーザー |
![]() |
提出日時 | 2015-03-22 23:22:25 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 115 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 22,400 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 00:06:33 |
合計ジャッジ時間 | 771 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%d %d", &N, &S); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <cstdio>int main(){int N, S;scanf("%d %d", &N, &S);printf("%d\n", S * 100 / (100-N));}