結果
問題 | No.83 最大マッチング |
ユーザー | umashika |
提出日時 | 2016-02-22 04:12:55 |
言語 | C90 (gcc 11.4.0) |
結果 |
OLE
|
実行時間 | - |
コード長 | 802 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 21,248 KB |
実行使用メモリ | 8,480 KB |
最終ジャッジ日時 | 2024-09-22 12:51:57 |
合計ジャッジ時間 | 33,549 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | OLE | - |
testcase_01 | OLE | - |
testcase_02 | OLE | - |
testcase_03 | OLE | - |
testcase_04 | OLE | - |
testcase_05 | OLE | - |
testcase_06 | OLE | - |
testcase_07 | OLE | - |
testcase_08 | OLE | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
8,480 KB |
コンパイルメッセージ
main.c: In function ‘main’: main.c:8:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d",&n); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main() { int n; int i,j; int ans=0; int q; scanf("%d",&n); while(n>1){ if(n==2){ans=1;break;} //2 //8 else if(n==3){ans=7;break;} //3 //7 else if(n==4){ans=11;break;} //2,2に分ける //6 else if(n==5){ans=71;break;} //3,2 //5 else if(n==6){ans=111;break;} //2,2,2 //3 else if(n==7){ans=711;break;} //3,4 //4 else if(n==8){ans=1111;break;}//2,2,2,2 //2 else if(n==9){ans=7111;break;} //3,2,2,2 //1 else if(n==10){ans=11111;break;} else{ q = n/10;//1111がqこ作れる n = n%10; } } //答えはans 1111がqこ if(ans!=0){ printf("%d",ans); } for(i=0;i<q;i++){ printf("11111"); } //printf("\n"); return 0; }