結果

問題 No.1578 A × B × C
ユーザー n_get
提出日時 2021-08-13 15:01:53
言語 Scheme
(Gauche-0.9.15)
結果
WA  
実行時間 -
コード長 148 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 6,692 KB
実行使用メモリ 22,692 KB
最終ジャッジ日時 2024-10-03 05:23:48
合計ジャッジ時間 3,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1 TLE * 1
other -- * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

(define abc (* (read) (read) (read)))
(print (let loop([n (read)] [x 1]) (cond [(zero? n) x] [else (loop (- n 1) (remainder (* x x) 1000000007))])))
0