結果

問題 No.1223 I hate Golf
ユーザー koba-e964koba-e964
提出日時 2020-09-29 15:01:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 87,124 KB
実行使用メモリ 71,608 KB
最終ジャッジ日時 2023-09-16 23:55:33
合計ジャッジ時間 2,614 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,564 KB
testcase_01 WA -
testcase_02 AC 68 ms
71,476 KB
testcase_03 AC 67 ms
71,576 KB
testcase_04 AC 68 ms
71,428 KB
testcase_05 AC 68 ms
71,412 KB
testcase_06 AC 68 ms
71,292 KB
testcase_07 AC 69 ms
71,336 KB
testcase_08 AC 68 ms
71,384 KB
testcase_09 AC 67 ms
71,580 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 69 ms
71,572 KB
testcase_14 AC 69 ms
71,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

n, k, t = map(int, readline().split())
print('Yes' if n <= k * t else 'No')
0