結果
| 問題 | No.441 和か積 | 
| コンテスト | |
| ユーザー |  reo_oc | 
| 提出日時 | 2017-03-03 17:27:32 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 163 bytes | 
| コンパイル時間 | 142 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-06-22 05:09:19 | 
| 合計ジャッジ時間 | 2,096 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 1 | 
| other | AC * 13 WA * 17 | 
ソースコード
a,b = map(int,input().split())
plus = int(a) + int(b)
time = int(a) * int(b)
if plus > time:
    print('S')
elif plus < time:
    print('C')
else:
    print('E')
            
            
            
        