結果
問題 | No.83 最大マッチング |
ユーザー |
|
提出日時 | 2020-06-16 10:41:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 165 bytes |
コンパイル時間 | 80 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-03 11:48:26 |
合計ジャッジ時間 | 1,189 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 9 RE * 1 |
ソースコード
N=int(input())if N%2==0:a=""for i in range(N//2):a+="1"print(int(a))else:a="7"for i in range(N//2-1):a+="1"print(a)