結果

問題 No.1264 010
ユーザー 8nd5t8nd5t
提出日時 2020-10-23 22:58:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 1,000 ms
コード長 294 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 71,944 KB
最終ジャッジ日時 2023-09-28 17:28:12
合計ジャッジ時間 3,040 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
71,660 KB
testcase_01 AC 98 ms
71,472 KB
testcase_02 AC 97 ms
71,468 KB
testcase_03 AC 99 ms
71,628 KB
testcase_04 AC 97 ms
71,600 KB
testcase_05 AC 103 ms
71,912 KB
testcase_06 AC 99 ms
71,400 KB
testcase_07 AC 102 ms
71,412 KB
testcase_08 AC 98 ms
71,568 KB
testcase_09 AC 99 ms
71,824 KB
testcase_10 AC 98 ms
71,944 KB
testcase_11 AC 99 ms
71,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0