結果
| 問題 | No.285 消費税2 |
| コンテスト | |
| ユーザー |
184
|
| 提出日時 | 2015-10-09 22:49:55 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 161 bytes |
| コンパイル時間 | 119 ms |
| コンパイル使用メモリ | 23,680 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-20 04:23:34 |
| 合計ジャッジ時間 | 1,020 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 26 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:4:26: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
4 | long long n;scanf("%lld",&n);
| ~~~~~^~~~~~~~~~~
ソースコード
#include <cstdio>
//namaega184
int main(){
long long n;scanf("%lld",&n);
char s[25];sprintf(s,"%f",n%100*0.08);
printf("%lld%s\n",n+8*n/100,s+1);
return 0;
}
184