結果

問題 No.796 well known
ユーザー pluto77pluto77
提出日時 2019-03-17 11:10:25
言語 Python2
(2.7.18)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 69 bytes
コンパイル時間 667 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 6,108 KB
最終ジャッジ日時 2023-09-20 12:52:42
合計ジャッジ時間 2,596 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
5,880 KB
testcase_01 AC 11 ms
5,988 KB
testcase_02 AC 10 ms
5,928 KB
testcase_03 AC 11 ms
5,964 KB
testcase_04 AC 30 ms
6,108 KB
testcase_05 AC 32 ms
5,848 KB
testcase_06 AC 36 ms
5,864 KB
testcase_07 AC 16 ms
6,088 KB
testcase_08 AC 32 ms
5,880 KB
testcase_09 AC 24 ms
5,960 KB
testcase_10 AC 35 ms
5,880 KB
testcase_11 AC 14 ms
5,876 KB
testcase_12 AC 22 ms
5,876 KB
testcase_13 AC 29 ms
5,980 KB
testcase_14 AC 19 ms
6,024 KB
testcase_15 AC 23 ms
5,988 KB
testcase_16 AC 37 ms
5,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki796

n=int(raw_input())
for i in xrange(n-1):
 print 3,
print 4
0