結果

問題 No.1223 I hate Golf
ユーザー koba-e964koba-e964
提出日時 2020-09-29 15:01:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 53,496 KB
最終ジャッジ日時 2024-07-03 22:29:37
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,504 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,156 KB
testcase_03 AC 38 ms
51,832 KB
testcase_04 AC 38 ms
52,500 KB
testcase_05 AC 38 ms
52,696 KB
testcase_06 AC 38 ms
52,968 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 38 ms
52,500 KB
testcase_09 AC 38 ms
52,080 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 38 ms
52,428 KB
testcase_14 AC 38 ms
51,812 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