結果
問題 |
No.1415 100の倍数かつ正整数(1)
|
ユーザー |
![]() |
提出日時 | 2025-03-12 10:12:03 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 308 bytes |
コンパイル時間 | 243 ms |
コンパイル使用メモリ | 25,344 KB |
実行使用メモリ | 7,328 KB |
最終ジャッジ日時 | 2025-03-12 10:12:05 |
合計ジャッジ時間 | 1,349 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 WA * 9 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:7:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%s",str); | ^~~~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> void main(void){ char str[100000] = "a"; char strCp[100000] = "a"; scanf("%s",str); if(str[0] != '-' && str[(int)strlen(str)-1] == '0' && str[(int)strlen(str)-2] == '0' ){ strncpy(strCp, str, (int)strlen(str)-2); printf("%s",strCp); }else{ printf("0"); } }