結果
問題 | No.964 2020 |
ユーザー |
![]() |
提出日時 | 2021-09-03 15:44:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 40 ms / 2,020 ms |
コード長 | 124 bytes |
コンパイル時間 | 487 ms |
コンパイル使用メモリ | 81,876 KB |
実行使用メモリ | 52,224 KB |
最終ジャッジ日時 | 2024-12-15 01:03:37 |
合計ジャッジ時間 | 1,546 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 |
ソースコード
n = int(input()) for i in range(1,n+1): if i == 10: print("0"*n,end="") else: print(str(i)*n,end="")