結果
問題 |
No.80 四角形を描こう
|
ユーザー |
![]() |
提出日時 | 2017-09-08 02:02:52 |
言語 | Scheme (Gauche-0.9.15) |
結果 |
AC
|
実行時間 | 26 ms / 5,000 ms |
コード長 | 175 bytes |
コンパイル時間 | 69 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-11-07 11:56:38 |
合計ジャッジ時間 | 967 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 8 |
ソースコード
(define n (read)) (if(= (remainder n 4)0) (print (/(* n n)16) )(if (= (remainder n 4)1)(print (*(quotient n 4) (quotient n 4))) (print (*(quotient n 4) (+(quotient n 4)1)))))