結果

問題 No.646 逆ピラミッド
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-13 02:45:17
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 77 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 87,244 KB
実行使用メモリ 71,508 KB
最終ジャッジ日時 2023-09-06 11:41:48
合計ジャッジ時間 1,793 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,320 KB
testcase_01 AC 67 ms
71,444 KB
testcase_02 AC 69 ms
71,264 KB
testcase_03 AC 65 ms
71,508 KB
testcase_04 AC 66 ms
71,260 KB
testcase_05 AC 64 ms
71,180 KB
testcase_06 AC 63 ms
71,384 KB
testcase_07 AC 65 ms
71,300 KB
testcase_08 AC 65 ms
71,312 KB
testcase_09 AC 65 ms
71,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = str(n)
for i in reversed(range(1, n+1)):
    print(s*i)
0