結果
問題 |
No.56 消費税
|
ユーザー |
![]() |
提出日時 | 2019-09-20 00:42:39 |
言語 | C (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 117 bytes |
コンパイル時間 | 1,530 ms |
コンパイル使用メモリ | 26,752 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 20:47:12 |
合計ジャッジ時間 | 5,420 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 4 |
other | RE * 23 |
コンパイルメッセージ
main.c:3:1: warning: return type defaults to 'int' [-Wimplicit-int] 3 | main() { | ^~~~
ソースコード
#include <stdio.h> main() { long D, P; scanf("%d %d", D, P); printf("%d\n", D*(100+P)/100); }