結果

問題 No.1264 010
ユーザー tanon710tanon710
提出日時 2020-10-24 00:04:09
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 43 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 86,772 KB
実行使用メモリ 71,456 KB
最終ジャッジ日時 2023-09-28 19:24:10
合計ジャッジ時間 2,582 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,448 KB
testcase_01 AC 76 ms
71,364 KB
testcase_02 AC 74 ms
71,296 KB
testcase_03 AC 78 ms
71,196 KB
testcase_04 AC 72 ms
71,364 KB
testcase_05 AC 74 ms
71,432 KB
testcase_06 AC 76 ms
71,288 KB
testcase_07 AC 76 ms
71,364 KB
testcase_08 AC 75 ms
71,200 KB
testcase_09 AC 75 ms
71,252 KB
testcase_10 AC 75 ms
71,376 KB
testcase_11 AC 75 ms
71,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
base='101'
print(base+'0'*n)
0