結果

問題 No.83 最大マッチング
ユーザー matsu7874matsu7874
提出日時 2014-12-02 23:50:27
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 108 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 10,716 KB
実行使用メモリ 7,900 KB
最終ジャッジ日時 2023-09-02 01:12:08
合計ジャッジ時間 1,811 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,824 KB
testcase_01 AC 15 ms
7,824 KB
testcase_02 AC 15 ms
7,880 KB
testcase_03 AC 15 ms
7,832 KB
testcase_04 AC 15 ms
7,900 KB
testcase_05 AC 15 ms
7,848 KB
testcase_06 AC 16 ms
7,804 KB
testcase_07 AC 15 ms
7,804 KB
testcase_08 AC 15 ms
7,800 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = 0
if N%2==1:
  S += 7
  N -= 3
while N>0:
  S *= 10
  S += 1
  N -= 2
print(S)
0