結果

問題 No.1223 I hate Golf
ユーザー nayakonayako
提出日時 2020-12-16 20:16:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 11,820 KB
実行使用メモリ 10,160 KB
最終ジャッジ日時 2023-10-20 09:49:33
合計ジャッジ時間 1,196 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,020 KB
testcase_01 WA -
testcase_02 AC 26 ms
10,020 KB
testcase_03 AC 26 ms
10,020 KB
testcase_04 WA -
testcase_05 AC 28 ms
10,020 KB
testcase_06 AC 27 ms
10,020 KB
testcase_07 AC 26 ms
10,020 KB
testcase_08 AC 26 ms
10,020 KB
testcase_09 AC 27 ms
10,020 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 27 ms
10,020 KB
testcase_14 AC 28 ms
10,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,T = map(int, input().split())

if N < 0:
    absN = -N
else:
    absN = N
    
if K*T > N:
    a = ["Yes"]
else:
    a = ["No"]

print("\n".join(map(str, a)))
0