結果
問題 | No.285 消費税2 |
ユーザー |
![]() |
提出日時 | 2015-10-09 22:25:16 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 702 bytes |
コンパイル時間 | 767 ms |
コンパイル使用メモリ | 93,416 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 02:27:43 |
合計ジャッジ時間 | 1,690 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 26 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:32:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 32 | scanf("%lld", &d); | ~~~~~^~~~~~~~~~~~
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<vector> #include<list> #include<deque> #include<queue> #include<map> #include<set> #include<stack> #include<cmath> #include<sstream> #include<fstream> #include<iomanip> #include<ctime> #include<complex> #include<functional> #include<climits> #include<cassert> #include<iterator> #include<unordered_map> //#include<quadmath.h> using namespace std; int main() { long long int d; scanf("%lld", &d); d *= 108LL; long long int a = d % 10LL; d /= 10LL; long long int b = d % 10LL; d /= 10LL; printf("%lld.%lld%lld", d,b,a); puts(""); return 0; }