結果
| 問題 | No.1291 小手調べ |
| コンテスト | |
| ユーザー |
timi
|
| 提出日時 | 2020-12-08 16:10:16 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 113 bytes |
| 記録 | |
| コンパイル時間 | 623 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-04-06 08:05:41 |
| 合計ジャッジ時間 | 1,511 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 4 |
ソースコード
N=int(input())
for i in range(N):
d=int(input())
ans=9*(10**d)
if d==1:
ans+=1
print(ans)
timi