結果
問題 | No.1223 I hate Golf |
ユーザー | kichi2004_ |
提出日時 | 2020-07-30 00:17:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 370 bytes |
コンパイル時間 | 935 ms |
コンパイル使用メモリ | 78,716 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-30 16:40:15 |
合計ジャッジ時間 | 3,380 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:7:29: warning: 'n' is used uninitialized [-Wuninitialized] 7 | assert(-1000000000 <= n && n <= 1000000000); | ^~ main.cpp:6:15: note: 'n' declared here 6 | long long n, k, t; | ^ main.cpp:8:19: warning: 'k' may be used uninitialized [-Wmaybe-uninitialized] 8 | assert(1 <= k && k <= 1000000000); | ^~ main.cpp:6:18: note: 'k' declared here 6 | long long n, k, t; | ^ main.cpp:9:19: warning: 't' may be used uninitialized [-Wmaybe-uninitialized] 9 | assert(1 <= t && t <= 1000000000); | ^~ main.cpp:6:21: note: 't' declared here 6 | long long n, k, t; | ^
ソースコード
#include <iostream> #include <cmath> #include <cassert> int main() { long long n, k, t; assert(-1000000000 <= n && n <= 1000000000); assert(1 <= k && k <= 1000000000); assert(1 <= t && t <= 1000000000); assert(n != 2003); assert(n != 2006); std::cin >> n >> k >> t; std::cout << (std::abs(n) <= k * t ? "Yes" : "No") << std::endl; }