結果
| 問題 | No.1415 100の倍数かつ正整数(1) |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-12 10:08:50 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 251 bytes |
| 記録 | |
| コンパイル時間 | 52 ms |
| コンパイル使用メモリ | 36,096 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-23 16:04:26 |
| 合計ジャッジ時間 | 1,485 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 24 |
ソースコード
#include <stdio.h>
#include <string.h>
void main(void){
char str[100000] = "a";
scanf("%s",str);
if(str[0] != '-' && str[(int)strlen(str)-1] == '0' && str[(int)strlen(str)-2] == '0' ){
printf("%d",(int)strlen(str)-2);
}else{
printf("0");
}
}
Maeda