結果

問題 No.337 P versus NP
ユーザー ldsyb
提出日時 2016-05-18 12:37:09
言語 Scheme
(Gauche-0.9.15)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-10-06 05:28:32
合計ジャッジ時間 1,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

(define n (read))
(define p (read))
(if (= p (* n p)) (display "=") (display "!="))
(newline)
0