結果
問題 | No.328 きれいな連立方程式 |
ユーザー |
![]() |
提出日時 | 2020-09-21 16:39:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 253 bytes |
コンパイル時間 | 95 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-24 11:45:55 |
合計ジャッジ時間 | 2,169 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 31 |
ソースコード
import sysread=sys.stdin.buffer.readreadline=sys.stdin.buffer.readlinereadlines=sys.stdin.buffer.readlinesc1, c2, c3, c4=map(int, readline().split())if (c1*c4-c2*c3)*(c1*c4-c2*c3)>=4*(c2*c4-c3**2)*(c1*c3-c2**2):print('R')else:print('I')