結果
| 問題 |
No.746 7の倍数
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2020-09-05 15:44:10 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 79 bytes |
| コンパイル時間 | 272 ms |
| コンパイル使用メモリ | 82,836 KB |
| 実行使用メモリ | 70,716 KB |
| 最終ジャッジ日時 | 2024-11-28 19:03:45 |
| 合計ジャッジ時間 | 2,487 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 1 RE * 19 |
ソースコード
N=int(input())
if N==0:
print(0)
exit()
T=10**N//7
print("0."+str(T))
Kazun