結果
問題 | No.83 最大マッチング |
ユーザー | UK_kkbj |
提出日時 | 2017-06-16 15:08:49 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 506 bytes |
コンパイル時間 | 129 ms |
コンパイル使用メモリ | 31,360 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 06:44:18 |
合計ジャッジ時間 | 727 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
#include <stdio.h> #include <math.h> long double match(int N){ long double ans = 0; double i; switch(N % 2){ case 0 :for(i = 0; i <= N/2 - 1; i++){ ans += pow(10,i); } break; case 1 :for(i = 0; i <= N/2 - 2; i++){ ans += pow(10,i); } ans += 7 * pow(10,i); break; } return ans; } long int main(void){ double n; scanf("%lf", &n); printf("%.0f",match(n)); return 0; }