結果
問題 |
No.83 最大マッチング
|
ユーザー |
![]() |
提出日時 | 2024-08-23 14:54:44 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 201 bytes |
コンパイル時間 | 470 ms |
コンパイル使用メモリ | 28,544 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-23 14:54:45 |
合計ジャッジ時間 | 1,479 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 10 |
ソースコード
#include <stdio.h> int main(){ int n, m; scanf("%d", &n); m = n%2; n -= m; n /= 2; printf("%d %d\n", n,m); for(;n>m;n--) printf("1"); if(m) printf("7"); return 0; }