結果

問題 No.441 和か積
ユーザー kokoa1046kokoa1046
提出日時 2017-09-05 17:40:26
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 24 ms / 1,000 ms
コード長 155 bytes
コンパイル時間 65 ms
コンパイル使用メモリ 5,376 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-06-27 03:54:59
合計ジャッジ時間 1,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

(define a (read))
(define b (read))
(define sum (+ a b))
(define product (* a b))
(if(= sum product)(print "E")(if(< sum product)(print "P") (print "S")) )
0