結果
問題 | No.83 最大マッチング |
ユーザー |
![]() |
提出日時 | 2019-12-15 07:17:14 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 187 bytes |
コンパイル時間 | 264 ms |
コンパイル使用メモリ | 27,776 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 16:49:18 |
合計ジャッジ時間 | 712 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include <stdio.h>int main() {int n;scanf("%d", &n);if (n%2==1) {printf("7");n-=3;}while (n) {printf("1");n-=2;}printf("\n");return 0;}