結果

問題 No.1223 I hate Golf
ユーザー ziplocziploc
提出日時 2020-09-18 15:56:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 236 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 67,548 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 08:00:42
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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:10:11: warning: 'K' is used uninitialized [-Wuninitialized]
   10 |     if (N / K <= T) {
      |         ~~^~~
main.cpp:5:12: note: 'K' was declared here
    5 |     int N, K, T;
      |            ^
main.cpp:10:5: warning: 'T' is used uninitialized [-Wuninitialized]
   10 |     if (N / K <= T) {
      |     ^~
main.cpp:5:15: note: 'T' was declared here
    5 |     int N, K, T;
      |               ^

ソースコード

diff #

#include <iostream>
using namespace std;

int main() {
    int N, K, T;
    cin >> N, K, T;
    if (N < 0) {
        N = 0 - N;
    }
    if (N / K <= T) {
        cout << "Yes" << endl;
    }else {
        cout << "No" << endl;
    }
}
0