結果
問題 |
No.1469 programing
|
ユーザー |
![]() |
提出日時 | 2025-03-17 10:18:54 |
言語 | C (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 212 bytes |
コンパイル時間 | 343 ms |
コンパイル使用メモリ | 25,216 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-17 10:19:04 |
合計ジャッジ時間 | 9,707 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 RE * 1 TLE * 1 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%s",s); | ^~~~~~~~~~~~~
ソースコード
#include <stdio.h> #include <string.h> void main(void){ char s[1000000] = "a"; scanf("%s",s); printf("%c",s[0]); for(int i = 1 ; i < (int)strlen(s) ; i++){ if(s[i-1] != s[i]){ printf("%c",s[i]); } } }