結果
| 問題 | 
                            No.964 2020
                             | 
                    
| コンテスト | |
| ユーザー | 
                             zer0
                         | 
                    
| 提出日時 | 2020-01-13 20:33:15 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 104 bytes | 
| コンパイル時間 | 288 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 10,496 KB | 
| 最終ジャッジ日時 | 2024-12-21 16:20:16 | 
| 合計ジャッジ時間 | 1,269 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 7 WA * 1 | 
ソースコード
N = input()
ans = ''
for i in range(int(N)):
    ans += str((int(N) + i) % 10) * int(N)
print(int(ans))
            
            
            
        
            
zer0