結果
問題 |
No.441 和か積
|
ユーザー |
![]() |
提出日時 | 2019-10-11 23:55:44 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 143 ms / 1,000 ms |
コード長 | 536 bytes |
コンパイル時間 | 2,085 ms |
コンパイル使用メモリ | 74,376 KB |
実行使用メモリ | 54,540 KB |
最終ジャッジ日時 | 2024-11-25 11:55:24 |
合計ジャッジ時間 | 7,510 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 30 |
ソースコード
import java.math.BigInteger; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); BigInteger a = scan.nextBigInteger(); BigInteger b = scan.nextBigInteger(); if (a.add(b).compareTo(a.multiply(b)) > 0) { System.out.println("S"); } else if (a.add(b).compareTo(a.multiply(b)) < 0) { System.out.println("P"); } else { System.out.println("E"); } } }