結果

問題 No.734 Careful Engineer
ユーザー weizenweizen
提出日時 2018-09-28 22:08:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-20 11:03:20
合計ジャッジ時間 665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 0 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 0 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 0 ms
6,940 KB
testcase_12 AC 0 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%d %d %d",&A, &B, &C);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(){
        int A, B, C;
        scanf("%d %d %d",&A, &B, &C);
        if(60*A <= B ) puts("-1");
        else if((C*60*60)%(60*A-B)==0) printf("%d\n",C*60*60/(60*A-B));
        else printf("%d\n",1+C*60*60/(60*A-B));
}
0