結果
問題 | No.1217 せしすせそ |
ユーザー | tagufartv |
提出日時 | 2020-09-04 22:07:10 |
言語 | C (gcc 12.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 253 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 28,032 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-26 12:56:43 |
合計ジャッジ時間 | 3,037 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#include<stdio.h> int main(void){ char c[]="abcdefghijklmnopqrstuvwxyz",S[30]; scanf("%s",S); for(int i=0;i<sizeof(c);i++){ if(c[i]!=S[i]){ printf("%sto%s\n",c[i],S[i]); break; } } return 0; }