結果
| 問題 |
No.746 7の倍数
|
| コンテスト | |
| ユーザー |
Novi
|
| 提出日時 | 2020-03-10 20:36:50 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 139 bytes |
| コンパイル時間 | 217 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-15 23:36:08 |
| 合計ジャッジ時間 | 1,770 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 1 RE * 19 |
ソースコード
n=int(input())
ans=((10**n)//7)
tmp=str(ans)
if n==0:
print(0)
exit()
cnt="0."+str()
for i in range(n):
cnt+=tmp[i]
print(cnt)
Novi