結果
問題 |
No.1223 I hate Golf
|
ユーザー |
![]() |
提出日時 | 2020-11-15 16:31:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 249 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-23 01:16:16 |
合計ジャッジ時間 | 1,191 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 9 WA * 3 |
ソースコード
intstr=(input()) intstr_s = intstr.split(" ") n_kyori = int(intstr_s[0]) kyori = int(intstr_s[1]) timer = int(intstr_s[2]) result = "" hikaku_kyori = int(kyori*timer) if n_kyori <= hikaku_kyori: result = "Yes" else: result = "No" print(result)