結果
| 問題 |
No.1264 010
|
| コンテスト | |
| ユーザー |
8nd5t
|
| 提出日時 | 2020-10-23 22:58:25 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 46 ms / 1,000 ms |
| コード長 | 294 bytes |
| コンパイル時間 | 311 ms |
| コンパイル使用メモリ | 81,920 KB |
| 実行使用メモリ | 54,016 KB |
| 最終ジャッジ日時 | 2024-07-21 12:07:36 |
| 合計ジャッジ時間 | 1,697 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
import sys,math,itertools
from collections import Counter,deque,defaultdict
from bisect import bisect_left,bisect_right
mod = 10**9+7
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
n = inp()
print('01' + '0' * n)
8nd5t