結果
| 問題 |
No.646 逆ピラミッド
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-08-19 17:50:40 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 238 bytes |
| コンパイル時間 | 275 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-17 18:26:26 |
| 合計ジャッジ時間 | 1,007 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 7 |
ソースコード
# coding: utf-8
def main():
n = int(input())
print(pyramid(n).replace('*', str(n)))
def pyramid(l):
if l == 0:
return ''
return ('*' * l) + '\n' + pyramid(l-1)
if __name__ == '__main__':
main()