結果
| 問題 | No.1362 [Zelkova 8th Tune] Black Sheep |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-19 10:05:18 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 198 bytes |
| 記録 | |
| コンパイル時間 | 106 ms |
| コンパイル使用メモリ | 36,928 KB |
| 最終ジャッジ日時 | 2026-02-22 13:19:47 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 38 |
ソースコード
#include <stdio.h>
void main(void){
char str[100000] = "a";
scanf("%s",str);
int i = 1;
while(str[i] != '\0'){
if(str[i-1] != str[i]){
printf("%d %c",i+1,str[i]);
break;
}
i++;
}
}
Maeda